diff options
author | Fred Fish <fnf@specifix.com> | 1995-07-12 22:47:39 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 1995-07-12 22:47:39 +0000 |
commit | 6942380809fa98ea292b9041ae9f274b49dd26f0 (patch) | |
tree | e7c7804905d963d3e331a2702d223f5d7822afc9 /gdb/testsuite/configure.in | |
parent | b818a3257f3b8b69ec3ba1d2e1bb2b355ece630b (diff) | |
download | gdb-6942380809fa98ea292b9041ae9f274b49dd26f0.zip gdb-6942380809fa98ea292b9041ae9f274b49dd26f0.tar.gz gdb-6942380809fa98ea292b9041ae9f274b49dd26f0.tar.bz2 |
* configure.in (configdirs): Remove gdb.chill from default list
of subdirs and then add it back in only if doing a native build.
The current chill compiler does not yet work in any cross build.
Diffstat (limited to 'gdb/testsuite/configure.in')
-rw-r--r-- | gdb/testsuite/configure.in | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gdb/testsuite/configure.in b/gdb/testsuite/configure.in index d4c24fc..ff3f1c8 100644 --- a/gdb/testsuite/configure.in +++ b/gdb/testsuite/configure.in @@ -7,7 +7,7 @@ srctrigger="Makefile.in" srcname="GDB Test Suite" # Directories to use in all configurations. -configdirs="gdb.base gdb.c++ gdb.chill gdb.disasm" +configdirs="gdb.base gdb.c++ gdb.disasm" # Directories to use for a configuration which supports signals. # This usually excludes cross targets. @@ -51,6 +51,11 @@ case "${target}" in ;; esac +# Chill currently doesn't link cross targets, so only config and test natives +if [ "${host}" = "${target}" ] ; then + configdirs="$configdirs} gdb.chill" +fi + # link in the lib directory if needed #if [ ! -d lib ] ; then # files="lib" |