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 ronaldoussoren
Recipients brett.cannon, eric.araujo, ned.deily, ronaldoussoren, tarek
Date 2013-07-06.10:00:45
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1373104846.31.0.879521219745.issue18136@psf.upfronthosting.co.za>
In-reply-to
Content
Also the compiler invocations looks fine:


for the main build:
...
clang -c -Wno-unused-result -Werror=declaration-after-statement -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Wno-unused-value -Wno-empty-body -Qunused-arguments    -I. -IInclude -I../Include -I/opt/python2.7/include/python2.7   -DPy_BUILD_CORE -o Python/_warnings.o ../Python/_warnings.c
...

And for an extension:


clang -Wno-unused-result -Werror=declaration-after-statement -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Wno-unused-value -Wno-empty-body -Qunused-arguments -DHAVE_EXPAT_CONFIG_H=1 -DUSE_PYEXPAT_CAPI -I/Users/ronald/Projects/python/rw/default/Modules/expat -I../Include -I. -IInclude -I/opt/python2.7/include/python2.7 -I/usr/local/include -I/Users/ronald/Projects/python/rw/default/Include -I/Users/ronald/Projects/python/rw/default/build2 -c /Users/ronald/Projects/python/rw/default/Modules/_elementtree.c -o build/temp.macosx-10.8-x86_64-3.4/Users/ronald/Projects/python/rw/default/Modules/_elementtree.o


(Both should be a single line, not sure of that survives copy&paste)


Both with -I/opt/python2.7/include and -I/opt/python2.7/include/python2.7 the build works correctly, and test_build_ext passes without problems.

I have no idea why this failed on Brett's machine :-(
History
Date User Action Args
2013-07-06 10:00:46ronaldoussorensetrecipients: + ronaldoussoren, brett.cannon, tarek, ned.deily, eric.araujo
2013-07-06 10:00:46ronaldoussorensetmessageid: <1373104846.31.0.879521219745.issue18136@psf.upfronthosting.co.za>
2013-07-06 10:00:46ronaldoussorenlinkissue18136 messages
2013-07-06 10:00:45ronaldoussorencreate