aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid D. Zuhn <zoo@cygnus>1993-09-13 19:29:54 +0000
committerDavid D. Zuhn <zoo@cygnus>1993-09-13 19:29:54 +0000
commit36b41837d6fbee0b71ca5b7d2d23320ebc8aadae (patch)
tree5fe970b9065e34428839de7991ef0131dbde1f4f
parentd71cbf2a83b8bb25b7b610d642c5a6363e442687 (diff)
downloadgdb-36b41837d6fbee0b71ca5b7d2d23320ebc8aadae.zip
gdb-36b41837d6fbee0b71ca5b7d2d23320ebc8aadae.tar.gz
gdb-36b41837d6fbee0b71ca5b7d2d23320ebc8aadae.tar.bz2
use mt-hppa, use 'gas ' instead of 'gas'
-rw-r--r--ChangeLog12
-rw-r--r--configure.in14
2 files changed, 21 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 5ce1490..6e4249e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,17 @@
+Mon Sep 13 12:28:43 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
+
+ * configure.in: grab mt-hppa for HPPA targets; use 'gas ' instead
+ of 'gas' in sed commands, since 'gash' is now in the tree as well.
+
Fri Sep 10 11:23:52 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
+ * configure: grab values for $(CC) and $(CXX) from the
+ environment, so that someone can do "CC=gcc configure; make" and
+ have it work right (matching the way that autoconf works now)
+
+ * configure.in, Makefile.in: add support for gash, the tcl
+ interface to Galaxy
+
* config.guess: add NetBSD variants (hp300, x86)
Thu Sep 9 16:48:52 1993 Jason Merrill (jason@deneb.cygnus.com)
diff --git a/configure.in b/configure.in
index 344c79a..270a754 100644
--- a/configure.in
+++ b/configure.in
@@ -113,6 +113,10 @@ esac
# per-target:
+case "${target}" in
+ hppa*-hp-hpux) target_makefile_frag=config/mt-hppa ;;
+esac
+
# some tools are so dependent upon X11 that if we're not building with X,
# it's not even worth trying to configure, much less build, that tool.
@@ -169,7 +173,7 @@ esac
case "${target}" in
alpha-dec-osf1)
- configdirs=`echo ${configdirs} | sed -e 's/ld//;s/binutils//;s/gas//'`
+ configdirs=`echo ${configdirs} | sed -e 's/ld//;s/binutils//;s/gas //'`
configdirs=`echo ${configdirs} | sed -e 's/gdb//;s/emacs//;s/fileutils//'`
configdirs=`echo ${configdirs} | sed -e 's/grep//;s/libg++//;s/libio//'`
;;
@@ -189,14 +193,14 @@ case "${target}" in
# Do configure ld/binutils/gas for this case.
;;
hppa*-*-*)
- configdirs=`echo ${configdirs} | sed -e 's/ld//;s/binutils//;s/gas//'`
+ configdirs=`echo ${configdirs} | sed -e 's/ld//;s/binutils//;s/gas /pagas /;s/shellutils//'`
;;
i[34]86-*-go32)
# add the go32 support tools to the list
configdirs=`echo go32 ${configdirs}`
;;
rs6000-*-*)
- configdirs=`echo ${configdirs} | sed -e 's/ld//;s/binutils//;s/gas//;s/gprof//'`
+ configdirs=`echo ${configdirs} | sed -e 's/ld//;s/binutils//;s/gas //;s/gprof//'`
;;
mips-*-*)
configdirs=`echo ${configdirs} | sed -e 's/gprof//'`
@@ -208,10 +212,10 @@ case "${target}" in
configdirs=`echo ${configdirs} | sed -e 's/gprof//'`
;;
*-*-solaris2*)
- configdirs=`echo ${configdirs} | sed -e 's/ld//;s/gas//'`
+ configdirs=`echo ${configdirs} | sed -e 's/ld//;s/gas //'`
;;
*-*-sysv4*)
- configdirs=`echo ${configdirs} | sed -e 's/ld//;s/binutils//;s/gas//'`
+ configdirs=`echo ${configdirs} | sed -e 's/ld//;s/binutils//;s/gas //'`
;;
*-*-vms)
configdirs=`echo ${configdirs} | sed -e 's/bfd//;s/ld//;s/binutils//'`