diff options
author | Ian Lance Taylor <ian@airs.com> | 1995-11-29 17:09:41 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1995-11-29 17:09:41 +0000 |
commit | 2a3486d2f9dae8674234e2c98fa59f623a7c2c2e (patch) | |
tree | cfc9c183c5a1bdf17d3351ed6da05cad4bfdc5a5 | |
parent | bbc6c9c129fa9b1911429a3607d40ca5a8ddc2a6 (diff) | |
download | gdb-2a3486d2f9dae8674234e2c98fa59f623a7c2c2e.zip gdb-2a3486d2f9dae8674234e2c98fa59f623a7c2c2e.tar.gz gdb-2a3486d2f9dae8674234e2c98fa59f623a7c2c2e.tar.bz2 |
* configure.in: Don't configure gas for alpha-dec-osf*.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | configure.in | 3 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,7 @@ +Wed Nov 29 12:12:01 1995 Ian Lance Taylor <ian@cygnus.com> + + * configure.in: Don't configure gas for alpha-dec-osf*. + Tue Nov 28 17:16:48 1995 Ian Lance Taylor <ian@cygnus.com> * configure.in: Default to --with-stabs for some targets for which diff --git a/configure.in b/configure.in index 7d20610..3c10111 100644 --- a/configure.in +++ b/configure.in @@ -374,7 +374,8 @@ case "${target}" in alpha-dec-osf*) # ld works, but does not support shared libraries. emacs doesn't # work. newlib is not 64 bit ready. I'm not sure about fileutils or grep. - noconfigdirs="$noconfigdirs ld emacs fileutils grep target-newlib" + # gas doesn't generate exception information. + noconfigdirs="$noconfigdirs gas ld emacs fileutils grep target-newlib" ;; alpha*-*-*) # newlib is not 64 bit ready |