Issue 1162001: configure incorrectly adds -OPT:Olimit=0 for icc (original) (raw)

Issue1162001

Created on 2005-03-12 14:54 by hoffman, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (4)
msg24566 - (view) Author: Michael Hoffman (hoffman) Date: 2005-03-12 14:54
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:Commandlinewarning:ignoringoption′−O′;noargumentrequired0? icc: Command line warning: ignoring option '-O'; no argument required 0 ?icc:Commandlinewarning:ignoringoptionO;noargumentrequired0 gcc -OPT:Olimit=0 test1.c; echo $? cc1: error: invalid option argument `-OPT:Olimit=0' 1
msg24567 - (view) Author: Michael Hoffman (hoffman) Date: 2005-03-12 15:58
Logged In: YES user_id=987664 Patch submitted: http://sourceforge.net/tracker/index.php?func=detail&aid=1162023&group_id=5470&atid=305470
msg24568 - (view) Author: Michael Hoffman (hoffman) Date: 2006-04-14 18:35
Logged In: YES user_id=987664 Supposedly fixed in r41953.
msg24569 - (view) Author: Michael Hoffman (hoffman) Date: 2006-04-14 18:36
Logged In: YES user_id=987664 Supposedly fixed in r41953.
History
Date User Action Args
2022-04-11 14:56:10 admin set github: 41686
2005-03-12 14:54:52 hoffman create