diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2006-01-07 21:39:28 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2006-01-07 21:39:28 (GMT) |
commit | 020c46aa1f1f39b8afb9baf6af278e3c444d8465 (patch) | |
tree | 6e071c2c89e28e6bbf97f3e0106ea839056ee098 /configure | |
parent | 8208b646704822e4111ce9d8e8ad17bc7bd60046 (diff) | |
download | cpython-020c46aa1f1f39b8afb9baf6af278e3c444d8465.zip cpython-020c46aa1f1f39b8afb9baf6af278e3c444d8465.tar.gz cpython-020c46aa1f1f39b8afb9baf6af278e3c444d8465.tar.bz2 |
icc accepts -OPT... but generates a warning, so just disable the check
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -1,5 +1,5 @@ #! /bin/sh -# From configure.in Revision: 41924 . +# From configure.in Revision: 41925 . # 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 |