git: f28c1d0c5c6c - main - llvm-objcopy: Install llvm-strip, and optionally strip, links

Jessica Clarke jrtc27 at FreeBSD.org
Mon Sep 13 20:54:08 UTC 2021


The branch main has been updated by jrtc27:

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

commit f28c1d0c5c6c6532df0dfa38eaf804343988d163
Author:     Jessica Clarke <jrtc27 at FreeBSD.org>
AuthorDate: 2021-09-13 20:52:40 +0000
Commit:     Jessica Clarke <jrtc27 at FreeBSD.org>
CommitDate: 2021-09-13 20:52:40 +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 at hardenedbsd.org>
    Tested by:      Shawn Webb <shawn.webb at hardenedbsd.org>
    MFC after:      1 week
---
 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
 


More information about the dev-commits-src-all mailing list