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 ned.deily
Recipients ned.deily, ronaldoussoren
Date 2010-04-19.13:43:40
SpamBayes Score 1.2219899e-05
Marked as misclassified No
Message-id <1271684622.87.0.695093789846.issue8461@psf.upfronthosting.co.za>
In-reply-to
Content
Fixes for Issue8366 corrected build failures with universal builds on OS X due to changes in the settings of CFLAGS and BASECFLAGS, which had caused -arch values to be added to both CFLAGS and BASECFLAGS.  The Mac Makefile for the PythonLauncher app needs to be changed as well, otherwise universal builds can now fail with errors like:

ld warning: in FileSettings.o, file is not of required architecture
ld warning: in MyAppDelegate.o, file is not of required architecture
ld warning: in MyDocument.o, file is not of required architecture
ld warning: in PreferencesWindowController.o, file is not of required architecture
ld warning: in doscript.o, file is not of required architecture
ld warning: in main.o, file is not of required architecture
Undefined symbols for architecture i386:
  "_main", referenced from:
      __start in crt1.o
ld: symbol(s) not found for architecture i386

The attached patch corrects the problem.
History
Date User Action Args
2010-04-19 13:43:42ned.deilysetrecipients: + ned.deily, ronaldoussoren
2010-04-19 13:43:42ned.deilysetmessageid: <1271684622.87.0.695093789846.issue8461@psf.upfronthosting.co.za>
2010-04-19 13:43:41ned.deilylinkissue8461 messages
2010-04-19 13:43:40ned.deilycreate