Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
020c46aa
Commit
020c46aa
authored
Jan 07, 2006
by
Neal Norwitz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
icc accepts -OPT... but generates a warning, so just disable the check
parent
8208b646
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
1 deletion
+13
-1
configure
configure
+7
-1
configure.in
configure.in
+6
-0
No files found.
configure
View file @
020c46aa
#! /bin/sh
# From configure.in Revision: 4192
4
.
# From configure.in Revision: 4192
5
.
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.59 for python 2.5.
#
...
...
@@ -3911,6 +3911,12 @@ then
BASECFLAGS
=
"
$BASECFLAGS
$ac_arch_flags
"
fi
# disable check for icc since it seems to pass, but generates a warning
if
test
"
$CC
"
=
icc
then
ac_cv_opt_olimit_ok
=
no
fi
echo
"
$as_me
:
$LINENO
: checking whether
$CC
accepts -OPT:Olimit=0"
>
&5
echo
$ECHO_N
"checking whether
$CC
accepts -OPT:Olimit=0...
$ECHO_C
"
>
&6
if
test
"
${
ac_cv_opt_olimit_ok
+set
}
"
=
set
;
then
...
...
configure.in
View file @
020c46aa
...
...
@@ -775,6 +775,12 @@ then
BASECFLAGS="$BASECFLAGS $ac_arch_flags"
fi
# disable check for icc since it seems to pass, but generates a warning
if test "$CC" = icc
then
ac_cv_opt_olimit_ok=no
fi
AC_MSG_CHECKING(whether $CC accepts -OPT:Olimit=0)
AC_CACHE_VAL(ac_cv_opt_olimit_ok,
[ac_save_cc="$CC"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment