This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Alzakath
Recipients Alzakath, ronaldoussoren
Date 2014-04-09.09:21:09
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1397035277.67.0.354917057695.issue21187@psf.upfronthosting.co.za>
In-reply-to
Content
With XCode 5.1 some changes were made to clang, making it impossible to build Mac OS X installer.

Shipped SQLite and Sleepycat DB pass CFLAGS and LDFLAGS to compiler in their compiler check in configure script.

In particular -syslibroot option is a linker option not a compiler option, and since XCode 5.1 unused command line options are considered as errors.

I manage to work around this problem with the following extra CFLAGS:
-Wno-error=unused-command-line-argument-hard-error-in-future

I joined my modified version of build-installer.py
History
Date User Action Args
2014-04-09 09:21:19Alzakathsetrecipients: + Alzakath, ronaldoussoren
2014-04-09 09:21:17Alzakathsetmessageid: <1397035277.67.0.354917057695.issue21187@psf.upfronthosting.co.za>
2014-04-09 09:21:17Alzakathlinkissue21187 messages
2014-04-09 09:21:17Alzakathcreate