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 l0nwlf
Recipients l0nwlf, ned.deily, ronaldoussoren
Date 2010-04-11.09:49:07
SpamBayes Score 1.3953252e-07
Marked as misclassified No
Message-id <1270979350.04.0.398876823394.issue8366@psf.upfronthosting.co.za>
In-reply-to
Content
The error was finally reproduced with :
$make distclean; ./configure --enable-universalsdk=/Developer/SDKs/MacOSX10.6.sdk --with-universal-archs=32-bit MACOSX_DEPLOYMENT_TARGET=10.6; make 

gcc -arch ppc -arch i386 -isysroot /Developer/SDKs/MacOSX10.6.sdk  -u _PyMac_Error -o python.exe \
			Modules/python.o \
			libpython2.7.a -ldl  -framework CoreFoundation     
Traceback (most recent call last):
  File "/Volumes/CoreHD/python-svn/Lib/site.py", line 544, in <module>
    main()
  File "/Volumes/CoreHD/python-svn/Lib/site.py", line 523, in main
    addbuilddir()
  File "/Volumes/CoreHD/python-svn/Lib/site.py", line 118, in addbuilddir
    s = "build/lib.%s-%.3s" % (get_platform(), sys.version)
  File "/Volumes/CoreHD/python-svn/Lib/sysconfig.py", line 646, in get_platform
    "Don't know machine value for archs=%r"%(archs,))
ValueError: Don't know machine value for archs=('i386', 'i386', 'ppc', 'ppc')
make: *** [sharedmods] Error 1

Also,
$ ls /Developer/SDKs/
MacOSX10.5.sdk MacOSX10.6.sdk
History
Date User Action Args
2010-04-11 09:49:10l0nwlfsetrecipients: + l0nwlf, ronaldoussoren, ned.deily
2010-04-11 09:49:10l0nwlfsetmessageid: <1270979350.04.0.398876823394.issue8366@psf.upfronthosting.co.za>
2010-04-11 09:49:08l0nwlflinkissue8366 messages
2010-04-11 09:49:07l0nwlfcreate