]> gcc.gnu.org Git - gcc.git/commitdiff
* config.if: Remove unused libc_interface determination.
authorNathanael Nerode <neroden@gcc.gnu.org>
Wed, 16 Jul 2003 06:34:53 +0000 (06:34 +0000)
committerNathanael Nerode <neroden@gcc.gnu.org>
Wed, 16 Jul 2003 06:34:53 +0000 (06:34 +0000)
From-SVN: r69439

ChangeLog
config.if

index d8bb2c2b566ecf152e7d0233ec8df7bc4bd2a850..298dc50626b86e0be2117b4015974fd543b77f32 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2003-07-16  Nathanael Nerode  <neroden@gcc.gnu.org>
+
+       * config.if: Remove unused libc_interface determination.
+
 2003-07-14  Nathanael Nerode  <neroden@gcc.gnu.org>
 
        * MAINTAINERS: Move self from write-after-approval to
index c38b59c841e7a4493da268e1efe2393a302846b0..2655bc3b56ab3744a04f85c723d21da6beec26af 100644 (file)
--- a/config.if
+++ b/config.if
@@ -3,7 +3,6 @@
 # determine:
 #
 #      1. libstcxx_incdir: the interface name for libstdc++.
-#      2. libc_interface: the interface name for libc.
 #
 
 # Get the top level src dir.
@@ -36,53 +35,3 @@ if test -z "$gcc_version"; then
 fi
 libstdcxx_incdir=c++/${gcc_version}
 
-# The trickiest part is libc_interface.
-if [ -z "${libc_interface}" ]
-then
-  case ${target_os} in
-  *linux*libc1*|*linux*libc5*)
-    case ${target_alias} in
-    *alpha*|*powerpc*)
-      libc_interface=-libc5.9-
-      ;;
-    *)
-      libc_interface=-libc5-
-      ;;
-    esac
-    ;;
-  *linux*gnu*)
-    # We have to work harder to figure it out.
-    if [ ${target_alias} = ${build_alias} ]
-    then
-      dummy=if$$
-      cat >$dummy.c <<EOF
-#include <features.h>                      
-main(argc, argv)
-     int argc;          
-     char *argv[];
-{
-  printf("%d\n", __GLIBC_MINOR__);
-  return 0;
-}
-EOF
-      ${CC-cc} $dummy.c -o $dummy 2>/dev/null
-      if [ "$?" = 0 ]
-      then
-       libc_interface=-libc6.`./$dummy`-
-       rm -f $dummy.c $dummy
-      else
-       # It should never happen.
-       echo "Cannot find the GNU C library minor version number." >&2
-       rm -f $dummy.c $dummy
-       exit 1
-      fi
-    else
-      # Cross compiling. Assume glibc 2.1.
-      libc_interface=-libc6.1-
-    fi
-    ;;
-  *)
-    libc_interface=-
-    ;;
-  esac
-fi
This page took 0.081442 seconds and 5 git commands to generate.