From: Stephen Casner Date: Tue, 21 Apr 2020 09:27:50 +0000 (+0100) Subject: Since the pdp11-aout target does not support gdb, gdbserver or gprof these should... X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=11104e4297b33e642bd509a07a3313210a0991aa;p=deliverable%2Fbinutils-gdb.git 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. --- diff --git a/ChangeLog b/ChangeLog index c8683661a7..f79c3e8fb5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2020-04-21 Stephen Casner + + PR 25830 + * configure.ac (noconfigdirs): Exclude gdb & gprof for pdp11. + * configure: Rebuild. + 2020-03-12 Tom Tromey * Makefile.in: Rebuild. diff --git a/configure b/configure index 1c5403e9e4..54d0339ab9 100755 --- a/configure +++ b/configure @@ -3876,6 +3876,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 f3065091c2..a910c4fd6b 100644 --- a/configure.ac +++ b/configure.ac @@ -1117,6 +1117,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"