From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 7814) id 26D363858435; Sat, 28 Aug 2021 00:42:21 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 26D363858435 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/google/grte/v5-2.27/master] Actuall use LLVM_OBJCOPY if available. X-Act-Checkin: glibc X-Git-Author: Siva Chandra Reddy X-Git-Refname: refs/heads/google/grte/v5-2.27/master X-Git-Oldrev: 059f0081cf05b47d922ca698c2ba68ee63b6ee2d X-Git-Newrev: 6676d4161d509ed9c734f552d4a5b8dd668f75d0 Message-Id: <20210828004221.26D363858435@sourceware.org> Date: Sat, 28 Aug 2021 00:42:21 +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:42:21 -0000 https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=6676d4161d509ed9c734f552d4a5b8dd668f75d0 commit 6676d4161d509ed9c734f552d4a5b8dd668f75d0 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