diff options
author | 2015-05-13 17:32:01 +0100 | |
---|---|---|
committer | 2015-05-13 17:32:01 +0100 | |
commit | 5569a85f45e4df3563254cea4caa02c7cb092480 (patch) | |
tree | 9fd3df260ab84bb74d189c5183a8b6c8bca21be8 | |
parent | xtensa: fix gas trampolines regression (diff) | |
download | binutils-gdb-5569a85f45e4df3563254cea4caa02c7cb092480.tar.gz binutils-gdb-5569a85f45e4df3563254cea4caa02c7cb092480.tar.bz2 binutils-gdb-5569a85f45e4df3563254cea4caa02c7cb092480.zip |
Disable the configuration of GDB for HPUX targets.
* configure.ac: Disable configuration of GDB for HPUX targets.
* configure: Regenerate.
-rw-r--r-- | ChangeLog | 5 | ||||
-rwxr-xr-x | configure | 11 | ||||
-rw-r--r-- | configure.ac | 11 |
3 files changed, 19 insertions, 8 deletions
diff --git a/ChangeLog b/ChangeLog index 68150c179c4..583b822c95f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2015-05-13 John David Anglin <dave.anglin@bell.net> + + * configure.ac: Disable configuration of GDB for HPUX targets. + * configure: Regenerate. + 2015-05-01 H.J. Lu <hongjiu.lu@intel.com> PR ld/18355 diff --git a/configure b/configure index 426eece8764..a2e253ab7c4 100755 --- a/configure +++ b/configure @@ -3776,6 +3776,12 @@ case "${target}" in ;; hppa1.1-*-osf* | hppa1.1-*-bsd* ) ;; + hppa*64*-*-hpux*) + noconfigdirs="$noconfigdirs gdb" + ;; + hppa*-*-hpux11*) + noconfigdirs="$noconfigdirs gdb ld" + ;; hppa*64*-*-linux*) ;; hppa*-*-linux*) @@ -3785,9 +3791,6 @@ case "${target}" in hppa*-*-openbsd* | \ hppa*64*-*-*) ;; - hppa*-hp-hpux11*) - noconfigdirs="$noconfigdirs ld" - ;; hppa*-*-pro*) ;; hppa*-*-*) @@ -3802,7 +3805,7 @@ case "${target}" in ;; ia64*-**-hpux*) # No ld support yet. - noconfigdirs="$noconfigdirs libgui itcl ld" + noconfigdirs="$noconfigdirs gdb libgui itcl ld" ;; ia64*-*-*vms*) # No ld support yet. diff --git a/configure.ac b/configure.ac index a81d7813247..8132df06a49 100644 --- a/configure.ac +++ b/configure.ac @@ -1116,6 +1116,12 @@ case "${target}" in ;; hppa1.1-*-osf* | hppa1.1-*-bsd* ) ;; + hppa*64*-*-hpux*) + noconfigdirs="$noconfigdirs gdb" + ;; + hppa*-*-hpux11*) + noconfigdirs="$noconfigdirs gdb ld" + ;; hppa*64*-*-linux*) ;; hppa*-*-linux*) @@ -1125,9 +1131,6 @@ case "${target}" in hppa*-*-openbsd* | \ hppa*64*-*-*) ;; - hppa*-hp-hpux11*) - noconfigdirs="$noconfigdirs ld" - ;; hppa*-*-pro*) ;; hppa*-*-*) @@ -1142,7 +1145,7 @@ case "${target}" in ;; ia64*-**-hpux*) # No ld support yet. - noconfigdirs="$noconfigdirs libgui itcl ld" + noconfigdirs="$noconfigdirs gdb libgui itcl ld" ;; ia64*-*-*vms*) # No ld support yet. |