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.

classification
Title: configure incorrectly adds -OPT:Olimit=0 for icc
Type: Stage:
Components: Build Versions:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: hoffman
Priority: normal Keywords:

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: 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
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:10adminsetgithub: 41686
2005-03-12 14:54:52hoffmancreate