diff options
author | Bob Manson <manson@cygnus> | 1998-04-17 19:25:20 +0000 |
---|---|---|
committer | Bob Manson <manson@cygnus> | 1998-04-17 19:25:20 +0000 |
commit | f4434c50ecf97730f0456a1ef2485675fe399df0 (patch) | |
tree | c0df1c5ab5ffb65da60e7e802826ab728292a54a /configure.in | |
parent | f8998e7780a74bd98a55029be88580a06a630ba9 (diff) | |
download | gdb-f4434c50ecf97730f0456a1ef2485675fe399df0.zip gdb-f4434c50ecf97730f0456a1ef2485675fe399df0.tar.gz gdb-f4434c50ecf97730f0456a1ef2485675fe399df0.tar.bz2 |
* Makefile.in: Add libstub.
* configure.in: Ditto. Build libstub for targets that have cygmon
support.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.in b/configure.in index fd8b28c..722b6c7 100644 --- a/configure.in +++ b/configure.in @@ -89,7 +89,7 @@ native_only="autoconf automake libtool cvssrc emacs emacs19 fileutils find gawk # directories to be built in a cross environment only # -cross_only="target-libgloss target-newlib target-cygmon target-opcodes" +cross_only="target-libgloss target-newlib target-cygmon target-opcodes target-libstub" ## All tools belong in one of the four categories, and are assigned above ## We assign ${configdirs} this way to remove all embedded newlines. This @@ -739,17 +739,17 @@ case "${target}" in ;; sparc-*-elf*) if [ x${is_cross_compiler} != xno ] ; then - target_configdirs="${target_configdirs} target-cygmon" + target_configdirs="${target_configdirs} target-libstub target-cygmon" fi ;; sparc64-*-elf*) if [ x${is_cross_compiler} != xno ] ; then - target_configdirs="${target_configdirs} target-cygmon" + target_configdirs="${target_configdirs} target-libstub target-cygmon" fi ;; sparclite-*-aout*) if [ x${is_cross_compiler} != xno ] ; then - target_configdirs="${target_configdirs} target-cygmon" + target_configdirs="${target_configdirs} target-libstub target-cygmon" fi ;; sparc-*-sunos4*) |