diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 1998-09-25 22:11:31 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 1998-09-25 22:11:31 +0000 |
commit | d46c1ae39af59121dc631198a7d7a09772284954 (patch) | |
tree | 8d9ad19fcd20b3c7b9d6acc6ec28f9dd5b4798a5 | |
parent | 69da960729726894f3323027b23de8901f09e856 (diff) | |
download | gdb-d46c1ae39af59121dc631198a7d7a09772284954.zip gdb-d46c1ae39af59121dc631198a7d7a09772284954.tar.gz gdb-d46c1ae39af59121dc631198a7d7a09772284954.tar.bz2 |
Fri Sep 25 18:07:32 1998 Jeff Johnston <jjohnstn@cygnus.com>
* configure.in (target_libs): Added target-libdsp.
* Makefile.in (TARGET_CONFIGDIRS): Added libdsp as target.
New libdsp component added.
-rw-r--r-- | .Sanitize | 2 | ||||
-rw-r--r-- | ChangeLog | 55 | ||||
-rw-r--r-- | configure.in | 3 |
3 files changed, 55 insertions, 5 deletions
@@ -63,7 +63,7 @@ keep_these_too="${keep_these_too} .cvsignore autoconf automake mpw-README mpw-configure mpw-config.in mpw-build.in mpw-install ltconfig ltmain.sh missing ylwrap" -lose_these_too="${lose_these_too} libg++ librx testsuite" +lose_these_too="${lose_these_too} libg++ librx libdsp testsuite" cygnus_files="release release-info build-all.mk test-build.mk CYGNUS COPYING.NEWLIB" @@ -1,3 +1,50 @@ +start-sanitize-dsp +Fri Sep 25 18:07:32 1998 Jeff Johnston <jjohnstn@cygnus.com> + + * configure.in (target_libs): Added target-libdsp. + * Makefile.in (TARGET_CONFIGDIRS): Added libdsp as target. + +end-sanitize-dsp +start-sanitize-ide +Thu Sep 10 12:37:03 1998 Drew Moseley <dmoseley@cygnus.com> + + * Makefile.in (install-foundry): Added creation of + builddate file to the install-foundry target. + +end-sanitize-ide +Fri Aug 28 12:28:26 1998 Per Bothner <bothner@cygnus.com> + + * mdata-sh: Imported. Needed for automake support. + +start-sanitize-java +Fri Aug 21 13:33:13 1998 Tom Tromey <tromey@cygnus.com> + + * configure.in (target_libs): Added target-qthreads. + * Makefile.in (ALL_TARGET_MODULES): Added qthreads. + (CONFIGURE_TARGET_MODULES): Likewise. + (CHECK_TARGET_MODULES): Likewise. + (INSTALL_TARGET_MODULES): Likewise. + (CLEAN_TARGET_MODULES): Likewise. + (all-target-qthreads): New target. + (configure-target-libjava): Depend on configure-target-qthreads. + (all-target-libjava): Depend on all-target-qthreads. + +end-sanitize-java +Thu Aug 13 12:49:29 1998 H.J. Lu <hjl@gnu.org> + + * Makefile.in (taz): Try "chmod -R og=u ." before + "chmod og=u `find . -print`". + +start-sanitize-armelf +Fri Jul 31 09:38:33 1998 Catherine Moore <clm@cygnus.com> + + * configure.in: Add arm-elf and thumb-elf support. + +end-sanitize-armelf +Mon Jul 27 16:23:58 1998 Doug Evans <devans@canuck.cygnus.com> + + * Makefile.in: Undo previous patch. + Fri Jul 24 19:55:24 1998 Doug Evans <devans@canuck.cygnus.com> * Makefile.in (INSTALL_TARGET): Move EXTRA_TARGET_HOST_INSTALL_MODULES @@ -558,12 +605,12 @@ Tue Dec 23 12:45:50 1997 Jeffrey A Law (law@cygnus.com) * config.guess: HP 9000/803 is a PA1.1 machine. -start-sanitize-vr5400 +start-sanitize-cygnus Mon Dec 22 11:27:12 1997 Jeffrey A Law (law@cygnus.com) * config.sub (mips64vr5xxx-elf): Handle. Treat as mips64vr5000-elf. -end-sanitize-vr5400 +end-sanitize-cygnus Sun Dec 21 16:53:12 1997 H.J. Lu (hjl@gnu.ai.mit.edu) @@ -710,12 +757,12 @@ Mon Oct 27 12:03:53 1997 Jason Merrill <jason@yorick.cygnus.com> * Makefile.in: check-target-libio depends on all-target-libstdc++. -start-sanitize-vr5400 +start-sanitize-cygnus Wed Oct 22 14:05:29 1997 Andrew Cagney <cagney@b1.cygnus.com> * config.sub (maybe_os): Add mips64vr5400. -end-sanitize-vr5400 +end-sanitize-cygnus Mon Oct 20 15:28:49 1997 Klaus K"ampf <kkaempf@progis.de> * makefile.vms: Fix to work with DEC C. diff --git a/configure.in b/configure.in index fdc9441..a329ab5 100644 --- a/configure.in +++ b/configure.in @@ -70,6 +70,9 @@ host_tools="${host_tools} cgen" target_libs="target-libiberty \ target-libgloss \ target-newlib \ + ${start-sanitize-dsp} + target-libdsp \ + ${end-sanitize-dsp} target-libio \ target-librx \ target-libstdc++ \ |