From patchwork Wed Dec 18 16:18:04 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tom Tromey X-Patchwork-Id: 36942 Received: (qmail 95280 invoked by alias); 18 Dec 2019 16:18:10 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Delivered-To: mailing list gdb-patches@sourceware.org Received: (qmail 95267 invoked by uid 89); 18 Dec 2019 16:18:10 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-22.4 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, RCVD_IN_DNSWL_NONE, SPF_PASS autolearn=ham version=3.3.1 spammy=igen, 1834, HContent-Transfer-Encoding:8bit X-HELO: rock.gnat.com Received: from rock.gnat.com (HELO rock.gnat.com) (205.232.38.15) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 18 Dec 2019 16:18:08 +0000 Received: from localhost (localhost.localdomain [127.0.0.1]) by filtered-rock.gnat.com (Postfix) with ESMTP id E689E56012; Wed, 18 Dec 2019 11:18:06 -0500 (EST) Received: from rock.gnat.com ([127.0.0.1]) by localhost (rock.gnat.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id eXmaG8cQCADe; Wed, 18 Dec 2019 11:18:06 -0500 (EST) Received: from murgatroyd.Home (75-166-123-50.hlrn.qwest.net [75.166.123.50]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by rock.gnat.com (Postfix) with ESMTPSA id A29A711648D; Wed, 18 Dec 2019 11:18:06 -0500 (EST) From: Tom Tromey To: gdb-patches@sourceware.org Cc: Tom Tromey Subject: [PATCH] Add install-strip to sim/ Date: Wed, 18 Dec 2019 09:18:04 -0700 Message-Id: <20191218161804.23441-1-tromey@adacore.com> MIME-Version: 1.0 PR build/24572 notes that "make install-strip" fails. For me, it works in every directory except "sim", so this patch adds install-strip targets to the Makefiles that appear there. sim/ChangeLog 2019-12-18 Tom Tromey PR build/24572: * Makefile.in (install-strip): New target. sim/common/ChangeLog 2019-12-18 Tom Tromey PR build/24572: * Makefile.in (install-strip): New target. sim/igen/ChangeLog 2019-12-18 Tom Tromey PR build/24572: * Makefile.in (install-strip): New target. sim/ppc/ChangeLog 2019-12-18 Tom Tromey PR build/24572: * Makefile.in (install-strip): New target. sim/testsuite/ChangeLog 2019-12-18 Tom Tromey PR build/24572: * Makefile.in (install-strip): New target. Change-Id: I76613bc5c7e7812284f33826f8a5d914477fcdc5 --- sim/ChangeLog | 5 +++++ sim/Makefile.in | 10 ++++++++++ sim/common/ChangeLog | 5 +++++ sim/common/Makefile.in | 1 + sim/igen/ChangeLog | 5 +++++ sim/igen/Makefile.in | 1 + sim/ppc/ChangeLog | 5 +++++ sim/ppc/Makefile.in | 5 +++++ sim/testsuite/ChangeLog | 5 +++++ sim/testsuite/Makefile.in | 1 + 10 files changed, 43 insertions(+) diff --git a/sim/Makefile.in b/sim/Makefile.in index 5a953fd4ad5..3a85eeb581d 100644 --- a/sim/Makefile.in +++ b/sim/Makefile.in @@ -166,6 +166,16 @@ install: else true; fi; \ done +install-strip: + @rootme=`pwd` ; export rootme ; \ + for dir in . ${SUBDIRS}; do \ + if [ "$$dir" = "." ]; then \ + true; \ + elif [ -d $$dir ]; then \ + (cd $$dir; $(MAKE) $(FLAGS_TO_PASS) install-strip) || exit 1; \ + else true; fi; \ + done + installcheck: @echo No installcheck target is available yet for the GNU simulators. diff --git a/sim/common/Makefile.in b/sim/common/Makefile.in index c62bd260697..6d094aab363 100644 --- a/sim/common/Makefile.in +++ b/sim/common/Makefile.in @@ -115,6 +115,7 @@ force: # Copy the files into directories where they will be run. install: install-man +install-strip: install-man install-man: installdirs n=`echo run | sed '$(program_transform_name)'`; \ diff --git a/sim/igen/Makefile.in b/sim/igen/Makefile.in index f3a797729ed..f287242e3e5 100644 --- a/sim/igen/Makefile.in +++ b/sim/igen/Makefile.in @@ -183,4 +183,5 @@ config.status: configure $(SHELL) ./config.status --recheck install: +install-strip: # diff --git a/sim/ppc/Makefile.in b/sim/ppc/Makefile.in index fb5a6bd21e3..8ad76c6ed3b 100644 --- a/sim/ppc/Makefile.in +++ b/sim/ppc/Makefile.in @@ -884,5 +884,10 @@ install: installdirs n=`echo run | sed '$(program_transform_name)'`; \ $(INSTALL_PROGRAM) run$(EXEEXT) $(DESTDIR)$(bindir)/$$n$(EXEEXT) +install-strip: installdirs + n=`echo run | sed '$(program_transform_name)'`; \ + $(INSTALL_PROGRAM) run$(EXEEXT) $(DESTDIR)$(bindir)/$$n$(EXEEXT) + $(STRIP) $(DESTDIR)$(bindir)/$$n$(EXEEXT) + installdirs: $(SHELL) $(srcdir)/../../mkinstalldirs $(DESTDIR)$(bindir) diff --git a/sim/testsuite/Makefile.in b/sim/testsuite/Makefile.in index a9b50ede98c..e127ae271a2 100644 --- a/sim/testsuite/Makefile.in +++ b/sim/testsuite/Makefile.in @@ -81,6 +81,7 @@ install-info: dvi: install: +install-strip: uninstall: force