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 2012-06-26.06:52:25
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1340693547.43.0.234356884387.issue15188@psf.upfronthosting.co.za>
In-reply-to
Content
======================================================================
FAIL: test_ldshared_value (test.test_sysconfig.TestSysConfig)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/Library/Frameworks/Python.framework/Versions/3.3/lib/python3.3/test/test_sysconfig.py", line 288, in test_ldshared_value
    self.assertIn(ldflags, ldshared)
AssertionError: '-arch i386 -arch x86_64   -g -L/tmp/_py/libraries/usr/local/lib' not found in 'gcc-4.2 -bundle -undefined dynamic_lookup -arch i386 -arch x86_64 -isysroot /Developer/SDKs/MacOSX10.6.sdk -isysroot /Developer/SDKs/MacOSX10.6.sdk -g -L/tmp/_py/libraries/usr/local/lib'

----------------------------------------------------------------------


There is code in Mac/BuildScript/build-installer.py to remove the temporary build library path (/tmp/_py/libraries/usr/local/lib) from the Makefile after the build is complete and before the files are packaged.  In 3.3 there is now also a Makefile cache file, _sysconfigdata.py, which is produced as a build target.  build-installer.py needs to learn how to clean it up as well.
History
Date User Action Args
2012-06-26 06:52:27ned.deilysetrecipients: + ned.deily, ronaldoussoren
2012-06-26 06:52:27ned.deilysetmessageid: <1340693547.43.0.234356884387.issue15188@psf.upfronthosting.co.za>
2012-06-26 06:52:26ned.deilylinkissue15188 messages
2012-06-26 06:52:25ned.deilycreate