Message24566
| 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:05 | admin | link | issue1162001 messages |
| 2007年08月23日 14:30:05 | admin | create |
|