diff options
author | Stephen Casner <casner@acm.org> | 2020-04-21 10:44:32 +0100 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2020-04-21 10:44:32 +0100 |
commit | e6cbe9654d14588f8bcaf267730fa4c694216eee (patch) | |
tree | b3a8f04ef43d5d0efe82d10cb1afb3cd8d1a3430 | |
parent | b90ff7a20b2d1c84a05cba13a2f20e6ff2260828 (diff) | |
download | gcc-e6cbe9654d14588f8bcaf267730fa4c694216eee.zip gcc-e6cbe9654d14588f8bcaf267730fa4c694216eee.tar.gz gcc-e6cbe9654d14588f8bcaf267730fa4c694216eee.tar.bz2 |
Since the pdp11-aout target does not support gdb, gdbserver or gprof these should be excluded in configure.
PR 25830
* configure.ac (noconfigdirs): Exclude gdb & gprof for pdp11.
* configure: Rebuild.
-rw-r--r-- | ChangeLog | 6 | ||||
-rwxr-xr-x | configure | 3 | ||||
-rw-r--r-- | configure.ac | 3 |
3 files changed, 12 insertions, 0 deletions
@@ -1,3 +1,9 @@ +2020-04-21 Stephen Casner <casner@acm.org> + + PR 25830 + * configure.ac (noconfigdirs): Exclude gdb & gprof for pdp11. + * configure: Rebuild. + 2020-04-17 Martin Liska <mliska@suse.cz> Jonathan Yong <10walls@gmail.com> @@ -3929,6 +3929,9 @@ case "${target}" in noconfigdirs="$noconfigdirs ld gas gdb gprof sim" noconfigdirs="$noconfigdirs $target_libraries" ;; + pdp11-*-*) + noconfigdirs="$noconfigdirs gdb gprof" + ;; powerpc-*-aix*) # copied from rs6000-*-* entry noconfigdirs="$noconfigdirs gprof" diff --git a/configure.ac b/configure.ac index 8d2b3d3..b95532c 100644 --- a/configure.ac +++ b/configure.ac @@ -1204,6 +1204,9 @@ case "${target}" in noconfigdirs="$noconfigdirs ld gas gdb gprof sim" noconfigdirs="$noconfigdirs $target_libraries" ;; + pdp11-*-*) + noconfigdirs="$noconfigdirs gdb gprof" + ;; powerpc-*-aix*) # copied from rs6000-*-* entry noconfigdirs="$noconfigdirs gprof" |