diff options
author | David Edelsohn <dje.gcc@gmail.com> | 1995-04-12 01:59:39 +0000 |
---|---|---|
committer | David Edelsohn <dje.gcc@gmail.com> | 1995-04-12 01:59:39 +0000 |
commit | 99dff294dc114c3b8f489f057591f3de55b6115a (patch) | |
tree | a63af318801dae226647d80fe6a2c90af92da433 /configure.in | |
parent | 0c0c911b03a01063edab4226c9f71bbe83f195a3 (diff) | |
download | gdb-99dff294dc114c3b8f489f057591f3de55b6115a.zip gdb-99dff294dc114c3b8f489f057591f3de55b6115a.tar.gz gdb-99dff294dc114c3b8f489f057591f3de55b6115a.tar.bz2 |
* configure.in: Recognize --with-newlib.
(sparc-*-sunos4*): Build sim, dejagnu, expect, tcl if cross target.
(arc-*-*): Build g++ stuff now.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/configure.in b/configure.in index 48d347f..fce3319 100644 --- a/configure.in +++ b/configure.in @@ -273,9 +273,12 @@ if [ x"${with_headers}" != x ] && [ x"${with_libs}" != x ]; then fi fi -# Recognize --without-newlib. +# Recognize --with-newlib/--without-newlib. if [ x${with_newlib} = xno ]; then configdirs=`echo " ${configdirs} " | sed -e 's/ newlib / /'` +elif [ x${with_newlib} = xyes ]; then + configdirs=`echo " ${configdirs} " | sed -e 's/ newlib / /'` + configdirs="${configdirs} newlib" fi # Handle ${copy_dirs} @@ -351,8 +354,6 @@ case "${target}" in ;; # start-sanitize-arc arc-*-*) - # Leave g++ for later. - noconfigdirs="$noconfigdirs libg++ libstdc++ libio librx" ;; # end-sanitize-arc # start-sanitize-psion @@ -451,7 +452,7 @@ case "${target}" in ;; sparc-*-sunos4*) if [ x${is_cross_compiler} != xno ] ; then - noconfigdirs="$noconfigdirs gdb gdbtest newlib sim dejagnu expect tcl" + noconfigdirs="$noconfigdirs gdb gdbtest newlib" else use_gnu_ld=no fi |