git: 4f4cb8f16f55 - stable/12 - llvm-objcopy: Install llvm-strip, and optionally strip, links

From: Dimitry Andric <dim_at_FreeBSD.org>
Date: Sat, 25 Dec 2021 11:55:56 UTC
The branch stable/12 has been updated by dim:

URL: https://cgit.FreeBSD.org/src/commit/?id=4f4cb8f16f550d7f32da1615bf6ec181c103a79f

commit 4f4cb8f16f550d7f32da1615bf6ec181c103a79f
Author:     Jessica Clarke <jrtc27@FreeBSD.org>
AuthorDate: 2021-09-13 20:52:40 +0000
Commit:     Dimitry Andric <dim@FreeBSD.org>
CommitDate: 2021-12-25 11:51:26 +0000

    llvm-objcopy: Install llvm-strip, and optionally strip, links
    
    Just as elftoolchain's objcopy doubles as strip, so does LLVM's. This
    ensures that a strip binary is still present for WITH_LLVM_BINUTILS
    builds. Note that we do not currently have a committed copy of the
    manpage generated from the rST source so no manpage is installed for
    (llvm-)strip.
    
    Reported by:    Shawn Webb <shawn.webb@hardenedbsd.org>
    Tested by:      Shawn Webb <shawn.webb@hardenedbsd.org>
    MFC after:      1 week
    
    (cherry picked from commit f28c1d0c5c6c6532df0dfa38eaf804343988d163)
---
 usr.bin/clang/llvm-objcopy/Makefile | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/usr.bin/clang/llvm-objcopy/Makefile b/usr.bin/clang/llvm-objcopy/Makefile
index 2e6fc8aba356..afd03b848b19 100644
--- a/usr.bin/clang/llvm-objcopy/Makefile
+++ b/usr.bin/clang/llvm-objcopy/Makefile
@@ -44,8 +44,11 @@ CLEANFILES+=	${TGHDRS} ${TGHDRS:C/$/.d/}
 
 LIBADD+=	z
 
+LINKS=		${BINDIR}/llvm-objcopy ${BINDIR}/llvm-strip
+
 .if ${MK_LLVM_BINUTILS} != "no"
-LINKS=		${BINDIR}/llvm-objcopy ${BINDIR}/objcopy
+LINKS+=		${BINDIR}/llvm-objcopy ${BINDIR}/objcopy \
+		${BINDIR}/llvm-strip ${BINDIR}/strip
 MLINKS=		llvm-objcopy.1 objcopy.1
 .endif