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 Vladimir.Timofeev
Recipients Vladimir.Timofeev
Date 2012-12-18.22:08:17
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1355868497.91.0.141324882263.issue16721@psf.upfronthosting.co.za>
In-reply-to
Content
Similar to http://bugs.python.org/issue1162001

But some differences, issue exposed only when first -OPT:Olimit=0 followed by correct -On option. clang simple do not check correctness of first occurences of -O:

$ clang -OPT:Olimit=0 test.c; echo $?
error: invalid integral value 'PT:Olimit=0' in '-OPT:Olimit=0'
error: invalid integral value 'PT:Olimit=0' in '-OPT:Olimit=0'
1

$ clang -OPT:Olimit=0 -O2 test.c; echo $?                                                                                                                                                                
0

This leads to normal compilation of python itself, but some dependant software built by gcc fails (see http://www.freebsd.org/cgi/query-pr.cgi?pr=174525 )
History
Date User Action Args
2012-12-18 22:08:17Vladimir.Timofeevsetrecipients: + Vladimir.Timofeev
2012-12-18 22:08:17Vladimir.Timofeevsetmessageid: <1355868497.91.0.141324882263.issue16721@psf.upfronthosting.co.za>
2012-12-18 22:08:17Vladimir.Timofeevlinkissue16721 messages
2012-12-18 22:08:17Vladimir.Timofeevcreate