From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 7814) id B48503857C6F; Sat, 28 Aug 2021 00:27:20 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org B48503857C6F Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Fangrui Song To: glibc-cvs@sourceware.org Subject: [glibc/maskray/grte] Actuall use LLVM_OBJCOPY if available. X-Act-Checkin: glibc X-Git-Author: Siva Chandra Reddy X-Git-Refname: refs/heads/maskray/grte X-Git-Oldrev: b115b8bb67d0b4b4f8f39783f8e20fd02fcec47a X-Git-Newrev: 51f0aa09b02688b204e06909754e8c222a06f5c7 Message-Id: <20210828002720.B48503857C6F@sourceware.org> Date: Sat, 28 Aug 2021 00:27:20 +0000 (GMT) X-BeenThere: glibc-cvs@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Glibc-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 28 Aug 2021 00:27:20 -0000 https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=51f0aa09b02688b204e06909754e8c222a06f5c7 commit 51f0aa09b02688b204e06909754e8c222a06f5c7 Author: Siva Chandra Reddy Date: Mon Apr 8 13:54:25 2019 -0700 Actuall use LLVM_OBJCOPY if available. Diff: --- csu/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csu/Makefile b/csu/Makefile index b0049b2ef2..b04a060c50 100644 --- a/csu/Makefile +++ b/csu/Makefile @@ -117,7 +117,7 @@ $(CC) -nostdlib -nostartfiles -r -o $@.precopy $^ # retains relocs, the section is garbled and causes errors in later # links done with --icf=safe. The removal can be unconditional as it # is a no-op for non-clang/lld. -$(OBJCOPY) --remove-section=.llvm_addrsig $@.precopy $@ +$(OBJCOPY_FOR_ADDRSIG) --remove-section=.llvm_addrsig $@.precopy $@ rm $@.precopy endef