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 hoffman
Recipients
Date 2005-03-12.14:54:52
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
When using Python 2.4 and the Intel C Compiler,
configure adds -OPT:Olimit=0 to BASECFLAGS. This is
because using icc -OPT:Olimit=0 does not produce an
error, but instead an irritating warning for every
source file compiled.

$ icc -OPT:Olimit=0 test1.c; echo $?
icc: Command line warning: ignoring option '-O'; no
argument required
0

$ gcc -OPT:Olimit=0 test1.c; echo $?
cc1: error: invalid option argument `-OPT:Olimit=0'
1
History
Date User Action Args
2007-08-23 14:30:05adminlinkissue1162001 messages
2007-08-23 14:30:05admincreate