diff options
author | Ian Lance Taylor <iant@google.com> | 2000-02-28 04:20:22 +0000 |
---|---|---|
committer | Ian Lance Taylor <iant@google.com> | 2000-02-28 04:20:22 +0000 |
commit | 1dc94f73700244d77cf9ceb5d4e65fd71a2f65f0 (patch) | |
tree | 29f20d095866f5d01c09675ee606fb554555cdb2 /configure.in | |
parent | b1b7a4f83a06ab6f6421a2b9995d8543bad81bd3 (diff) | |
download | newlib-1dc94f73700244d77cf9ceb5d4e65fd71a2f65f0.zip newlib-1dc94f73700244d77cf9ceb5d4e65fd71a2f65f0.tar.gz newlib-1dc94f73700244d77cf9ceb5d4e65fd71a2f65f0.tar.bz2 |
2000-02-27 Andreas Jaeger <aj@suse.de>
* configure.in: Add entry for mips*-*-linux*, move catch all
*-*-*linux* entry below this one.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/configure.in b/configure.in index 417bee8..7e3550c 100644 --- a/configure.in +++ b/configure.in @@ -687,10 +687,6 @@ case "${target}" in # but don't build gdb noconfigdirs="$noconfigdirs gdb target-libg++ target-libstdc++ target-libio target-librx" ;; - *-*-linux*) - # linux has rx in libc - skipdirs="$skipdirs target-librx" - ;; i[3456]86-*-mingw32*) target_configdirs="$target_configdirs target-mingw" noconfigdirs="$noconfigdirs expect target-libgloss" @@ -816,6 +812,11 @@ case "${target}" in # emacs is emacs 18, which does not work on Irix 5 (emacs19 does work) noconfigdirs="$noconfigdirs gas gprof emacs target-libgloss" ;; + mips*-*-linux*) + noconfigdirs="$noconfigdirs gprof" + # linux has rx in libc + skipdirs="$skipdirs target-librx" + ;; mips*-dec-bsd*) noconfigdirs="$noconfigdirs gprof target-libgloss" ;; @@ -881,6 +882,10 @@ case "${target}" in vax-*-*) noconfigdirs="$noconfigdirs target-newlib target-libgloss" ;; + *-*-linux*) + # linux has rx in libc + skipdirs="$skipdirs target-librx" + ;; *-*-lynxos*) # Newlib makes problems for libg++ in crosses. noconfigdirs="$noconfigdirs target-newlib target-libgloss" |