aboutsummaryrefslogtreecommitdiff
path: root/config.if
diff options
context:
space:
mode:
authorNathanael Nerode <neroden@gcc.gnu.org>2003-07-16 06:35:35 +0000
committerNathanael Nerode <neroden@gcc.gnu.org>2003-07-16 06:35:35 +0000
commiteef8ffd44b7130336e467ec77d7ba7d9634870e4 (patch)
treee1241f98969b630a024300f710639bd8c4da2853 /config.if
parentc5c0a210222e4921afc8f54cd16014aea8ab5f11 (diff)
downloadgdb-eef8ffd44b7130336e467ec77d7ba7d9634870e4.zip
gdb-eef8ffd44b7130336e467ec77d7ba7d9634870e4.tar.gz
gdb-eef8ffd44b7130336e467ec77d7ba7d9634870e4.tar.bz2
* config.if: Remove unused libc_interface determination.
Diffstat (limited to 'config.if')
-rw-r--r--config.if51
1 files changed, 0 insertions, 51 deletions
diff --git a/config.if b/config.if
index c38b59c..2655bc3 100644
--- 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