diff options
author | Nick Clifton <nickc@redhat.com> | 2000-10-30 21:12:29 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2000-10-30 21:12:29 +0000 |
commit | 6b8ce74ca3176d217b6daf05c82a30e0de08dbce (patch) | |
tree | 22f74fbcc8c3801cdce487f45867081899d71f23 | |
parent | f745abc7a073522a7fd79db3ffadc6b94f36d7b2 (diff) | |
download | newlib-6b8ce74ca3176d217b6daf05c82a30e0de08dbce.zip newlib-6b8ce74ca3176d217b6daf05c82a30e0de08dbce.tar.gz newlib-6b8ce74ca3176d217b6daf05c82a30e0de08dbce.tar.bz2 |
Add noconfigure dirs for m68[hc]{11|12} targets.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | configure.in | 5 |
2 files changed, 9 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2000-10-30 Stephane Carrez <stcarrez@worldnet.fr> + + * configure.in (noconfigdirs): Don't compile some + of the libraries for 68HC11 & 68hc12 targets. + 2000-09-30 Alexandre Oliva <aoliva@redhat.com> * ltconfig, ltmain.sh, libtool.m4: Updated from libtool diff --git a/configure.in b/configure.in index 8daa3f3..5bb8895 100644 --- a/configure.in +++ b/configure.in @@ -754,7 +754,10 @@ case "${target}" in i[3456]86-*-beos*) noconfigdirs="$noconfigdirs gdb target-newlib target-libgloss" ;; - m68k-*-elf*) + m68hc11-*-*|m6811-*-*|m68hc12-*-*|m6812-*-*) + noconfigdirs="$noconfigdirs target-libiberty target-librx target-libg++ target-libstdc++ target-libio target-libf2c target-libchill target-zlib target-libobjc" + ;; + m68k-*-elf*) if [ x${is_cross_compiler} != xno ] ; then target_configdirs="${target_configdirs} target-bsp target-cygmon" fi |