diff options
author | Ulrich Drepper <drepper@redhat.com> | 2008-04-11 17:53:44 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2008-04-11 17:53:44 +0000 |
commit | 22dca1ea77613162d597c7cb0729873619eaf5e0 (patch) | |
tree | 67ae6ecdc5d865d7b3153248723c9a57128dd0ae /configure | |
parent | 5d59f4a50f07f2fa1d2556f1b2069431be5ab3d6 (diff) | |
download | glibc-22dca1ea77613162d597c7cb0729873619eaf5e0.tar.gz glibc-22dca1ea77613162d597c7cb0729873619eaf5e0.tar.xz glibc-22dca1ea77613162d597c7cb0729873619eaf5e0.zip |
* configure.in: Check for -fno-section-anchors in addition to
-fno-toplevel-reorder.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/configure b/configure index 4b969787e3..3330d53dc3 100755 --- a/configure +++ b/configure @@ -5067,7 +5067,7 @@ echo "$as_me: WARNING: if test -n "$sysheaders"; then SYSINCLUDES=-nostdinc for d in include include-fixed; do - i=`$CC -print-file-name="$d"` && test "x$i" != "x$d" && + i=`$CC -print-file-name="$d"` && test "x$i" != x && test "x$i" != "x$d" && SYSINCLUDES="$SYSINCLUDES -isystem $i" done SYSINCLUDES="$SYSINCLUDES \ @@ -6411,15 +6411,15 @@ echo "${ECHO_T}$libc_cv_hashstyle" >&6; } fi -{ echo "$as_me:$LINENO: checking for -fno-toplevel-reorder" >&5 -echo $ECHO_N "checking for -fno-toplevel-reorder... $ECHO_C" >&6; } +{ echo "$as_me:$LINENO: checking for -fno-toplevel-reorder -fno-section-anchors" >&5 +echo $ECHO_N "checking for -fno-toplevel-reorder -fno-section-anchors... $ECHO_C" >&6; } if test "${libc_cv_fno_toplevel_reorder+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat > conftest.c <<EOF int foo; EOF -if { ac_try='${CC-cc} $CFLAGS $CPPFLAGS -S -fno-toplevel-reorder +if { ac_try='${CC-cc} $CFLAGS $CPPFLAGS -S -fno-toplevel-reorder -fno-section-anchors conftest.c 1>&5' { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 @@ -6436,7 +6436,7 @@ fi { echo "$as_me:$LINENO: result: $libc_cv_fno_toplevel_reorder" >&5 echo "${ECHO_T}$libc_cv_fno_toplevel_reorder" >&6; } if test $libc_cv_fno_toplevel_reorder = yes; then - fno_unit_at_a_time=-fno-toplevel-reorder + fno_unit_at_a_time="-fno-toplevel-reorder -fno-section-anchors" else fno_unit_at_a_time=-fno-unit-at-a-time fi |