From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2124) id 59FE2384B0C1; Tue, 21 Apr 2020 09:28:16 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 59FE2384B0C1 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Nick Clifton To: bfd-cvs@sourceware.org, gdb-cvs@sourceware.org Subject: [binutils-gdb] Since the pdp11-aout target does not support gdb, gdbserver or gprof these should be excluded in con X-Act-Checkin: binutils-gdb X-Git-Author: Stephen Casner X-Git-Refname: refs/heads/master X-Git-Oldrev: fad3d2c1b268735fe6bfa280a8e4e260fb0196a7 X-Git-Newrev: 11104e4297b33e642bd509a07a3313210a0991aa Message-Id: <20200421092816.59FE2384B0C1@sourceware.org> Date: Tue, 21 Apr 2020 09:28:16 +0000 (GMT) X-BeenThere: gdb-cvs@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Apr 2020 09:28:16 -0000 https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=11104e4297b33e642bd509a07a3313210a0991aa commit 11104e4297b33e642bd509a07a3313210a0991aa Author: Stephen Casner Date: Tue Apr 21 10:27:50 2020 +0100 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: --- ChangeLog | 6 ++++++ configure | 3 +++ configure.ac | 3 +++ 3 files changed, 12 insertions(+) diff --git a/ChangeLog b/ChangeLog index c8683661a74..f79c3e8fb50 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 1c5403e9e4d..54d0339ab9e 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 f3065091c26..a910c4fd6ba 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"