mirror of
https://git.freebsd.org/src.git
synced 2026-01-11 19:57:22 +00:00
Move toolchain utils to -toolchain package
Move LLVM ar, nm, and size. Also move elftoolchain strings, which should have already been there. The remaining LLVM utilities (including strings) stay in -clang for now since they're links to other executables. Reviewed by: des, dim Differential Revision: https://reviews.freebsd.org/D51583
This commit is contained in:
parent
73e3f094fa
commit
328110da26
6 changed files with 7 additions and 2 deletions
|
|
@ -31,7 +31,7 @@ DPADD+= ${OBJTOP}/lib/clang/lib${lib}/lib${LIBPRIV}${lib}.${LIBEXT}
|
|||
LDADD+= ${OBJTOP}/lib/clang/lib${lib}/lib${LIBPRIV}${lib}.${LIBEXT}
|
||||
.endfor
|
||||
|
||||
PACKAGE= clang
|
||||
PACKAGE?= clang
|
||||
|
||||
.if ${.MAKE.OS} == "FreeBSD" || !defined(BOOTSTRAPPING)
|
||||
LIBADD+= execinfo
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
.include <src.opts.mk>
|
||||
|
||||
PACKAGE= toolchain
|
||||
PROG_CXX= llvm-ar
|
||||
MAN= llvm-ar.1 llvm-ranlib.1
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
.include <src.opts.mk>
|
||||
|
||||
PACKAGE= toolchain
|
||||
PROG_CXX= llvm-nm
|
||||
|
||||
SRCDIR= llvm/tools/llvm-nm
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
.include <src.opts.mk>
|
||||
|
||||
PACKAGE= toolchain
|
||||
PROG_CXX= llvm-size
|
||||
|
||||
SRCDIR= llvm/tools/llvm-size
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ DPADD+= ${OBJTOP}/lib/clang/lib${lib}/lib${LIBPRIV}${lib}.${LIBEXT}
|
|||
LDADD+= ${OBJTOP}/lib/clang/lib${lib}/lib${LIBPRIV}${lib}.${LIBEXT}
|
||||
.endfor
|
||||
|
||||
PACKAGE= clang
|
||||
PACKAGE?= clang
|
||||
|
||||
.if ${.MAKE.OS} == "FreeBSD" || !defined(BOOTSTRAPPING)
|
||||
LIBADD+= execinfo
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
.include <src.opts.mk>
|
||||
|
||||
PACKAGE= toolchain
|
||||
|
||||
ELFTCDIR= ${SRCTOP}/contrib/elftoolchain
|
||||
|
||||
.PATH: ${ELFTCDIR}/strings
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue