diff options
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rwxr-xr-x | gcc/configure | 4 | ||||
-rw-r--r-- | gcc/configure.ac | 4 |
3 files changed, 9 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 9595e9aa0d4..29c899ef77c 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2005-08-24 Alan Modra <amodra@bigpond.net.au> + + * configure.ac (HAVE_LD_NO_DOT_SYMS): Set for powerpc-linux biarch. + * configure: Regenerate. + 2005-08-23 Paolo Bonzini <bonzini@gnu.org> PR middle-end/23517 diff --git a/gcc/configure b/gcc/configure index d9697b0f139..1e4eed267e8 100755 --- a/gcc/configure +++ b/gcc/configure @@ -15492,8 +15492,8 @@ _ACEOF fi -case "$target" in - powerpc64*-*-linux*) +case "$target:$tm_file" in + powerpc64*-*-linux* | powerpc*-*-linux*rs6000/biarch64.h*) echo "$as_me:$LINENO: checking linker support for omitting dot symbols" >&5 echo $ECHO_N "checking linker support for omitting dot symbols... $ECHO_C" >&6 if test "${gcc_cv_ld_no_dot_syms+set}" = set; then diff --git a/gcc/configure.ac b/gcc/configure.ac index 16268b6e8df..00056cf5ec0 100644 --- a/gcc/configure.ac +++ b/gcc/configure.ac @@ -2966,8 +2966,8 @@ if test x"$gcc_cv_ld_as_needed" = xyes; then [Define if your linker supports --as-needed and --no-as-needed options.]) fi -case "$target" in - powerpc64*-*-linux*) +case "$target:$tm_file" in + powerpc64*-*-linux* | powerpc*-*-linux*rs6000/biarch64.h*) AC_CACHE_CHECK(linker support for omitting dot symbols, gcc_cv_ld_no_dot_syms, [gcc_cv_ld_no_dot_syms=no |