Actuall use LLVM_OBJCOPY if available.

This commit is contained in:
Siva Chandra Reddy 2019-04-08 13:54:25 -07:00 committed by Fangrui Song
parent 059f0081cf
commit 6676d4161d

View File

@ -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