diff options
author | Franz Sirl <Franz.Sirl-kernel@lauterbach.com> | 1998-01-03 04:16:38 -0700 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-01-03 04:16:38 -0700 |
commit | 93ad003a507c692e7a995754f23c0d85fc74666b (patch) | |
tree | 72cd1266f2303eaa8c843b91d028313e30373a9d | |
parent | da741f3dfdbe3021ab314172902f654fc9127bc0 (diff) | |
download | gcc-93ad003a507c692e7a995754f23c0d85fc74666b.zip gcc-93ad003a507c692e7a995754f23c0d85fc74666b.tar.gz gcc-93ad003a507c692e7a995754f23c0d85fc74666b.tar.bz2 |
configure.in: Finalize support for {alpha|powerpc}*-*-linux-gnulibc1
/
* configure.in: Finalize support for {alpha|powerpc}*-*-linux-gnulibc1
From-SVN: r17287
-rw-r--r-- | configure.in | 8 | ||||
-rw-r--r-- | libstdc++/configure.in | 6 |
2 files changed, 11 insertions, 3 deletions
diff --git a/configure.in b/configure.in index 6de0e2c..1846997 100644 --- a/configure.in +++ b/configure.in @@ -14,7 +14,7 @@ ## For more information on these two systems, check out the documentation ## for 'Autoconf' (autoconf.texi) and 'Configure' (configure.texi). -# Copyright (C) 1992, 93, 94, 95, 96, 1997 Free Software Foundation, Inc. +# Copyright (C) 1992, 93, 94, 95, 96, 97, 1998 Free Software Foundation, Inc. # # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by @@ -301,6 +301,12 @@ case "${target}" in powerpc-*-netware*) target_makefile_frag="${target_makefile_frag} config/mt-netware" ;; + alpha*-*-linux-gnulibc1) + target_makefile_frag="${target_makefile_frag} config/mt-linux" + ;; + powerpc*-*-linux-gnulibc1) + target_makefile_frag="${target_makefile_frag} config/mt-linux" + ;; *-*-linux-gnu) target_makefile_frag="${target_makefile_frag} config/mt-linux" ;; diff --git a/libstdc++/configure.in b/libstdc++/configure.in index 9ec0ac1..efc2f55 100644 --- a/libstdc++/configure.in +++ b/libstdc++/configure.in @@ -43,8 +43,10 @@ fi # Make sure the right flags are defined for multi-threading. case "${target}" in - *-*-linux-gnu) frags="${frags} linux.mt" ;; - m68k-motorola-sysv) frags="${frags} delta.mt" ;; + alpha*-*-linux-gnulibc1) frags="${frags} linux.mt" ;; + powerpc*-*-linux-gnulibc1) frags="${frags} linux.mt" ;; + *-*-linux-gnu) frags="${frags} linux.mt" ;; + m68k-motorola-sysv) frags="${frags} delta.mt" ;; esac for frag in ${frags}; do |