diff options
author | Stefan Krah <skrah@bytereef.org> | 2015-07-03 13:30:54 (GMT) |
---|---|---|
committer | Stefan Krah <skrah@bytereef.org> | 2015-07-03 13:30:54 (GMT) |
commit | 99e36b9a8475b3659194716e38a86832a508f2ac (patch) | |
tree | 090d5c30186ec8ef2b43f4560ac5cb9b865ac828 /configure | |
parent | d048003d909360faf716c84459ed7067bdee5f08 (diff) | |
download | cpython-99e36b9a8475b3659194716e38a86832a508f2ac.zip cpython-99e36b9a8475b3659194716e38a86832a508f2ac.tar.gz cpython-99e36b9a8475b3659194716e38a86832a508f2ac.tar.bz2 |
Issue #24543: Use AC_LINK instead of AC_COMPILE in order to prevent false
positives with the -flto option (gcc >= 4.9.0 and clang).
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -12747,12 +12747,13 @@ main () return 0; } _ACEOF -if ac_fn_c_try_compile "$LINENO"; then : +if ac_fn_c_try_link "$LINENO"; then : have_gcc_asm_for_x87=yes else have_gcc_asm_for_x87=no fi -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $have_gcc_asm_for_x87" >&5 $as_echo "$have_gcc_asm_for_x87" >&6; } if test "$have_gcc_asm_for_x87" = yes |