eb8951e7f7
that builds the following additional llvm/clang tools: - bugpoint - llc - lli - llvm-ar - llvm-as - llvm-bcanalyzer - llvm-diff - llvm-dis - llvm-extract - llvm-ld - llvm-link - llvm-mc - llvm-nm - llvm-objdump - llvm-prof - llvm-ranlib - llvm-rtdyld - llvm-stub - macho-dump - opt These tools are mainly useful for people that want to manipulate llvm bitcode (.bc) and llvm assembly language (.ll) files, or want to tinker with llvm and clang themselves. MFC after: 2 weeks
35 lines
588 B
Makefile
35 lines
588 B
Makefile
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
LIB= llvmipo
|
|
|
|
SRCDIR= lib/Transforms/IPO
|
|
SRCS= ArgumentPromotion.cpp \
|
|
ConstantMerge.cpp \
|
|
DeadArgumentElimination.cpp \
|
|
ExtractGV.cpp \
|
|
FunctionAttrs.cpp \
|
|
GlobalDCE.cpp \
|
|
GlobalOpt.cpp \
|
|
IPConstantPropagation.cpp \
|
|
InlineAlways.cpp \
|
|
InlineSimple.cpp \
|
|
Inliner.cpp \
|
|
Internalize.cpp \
|
|
LoopExtractor.cpp \
|
|
MergeFunctions.cpp \
|
|
PartialInlining.cpp \
|
|
PassManagerBuilder.cpp \
|
|
PruneEH.cpp \
|
|
StripDeadPrototypes.cpp \
|
|
StripSymbols.cpp
|
|
|
|
.if ${MK_CLANG_EXTRAS} != "no"
|
|
SRCS+= IPO.cpp
|
|
.endif
|
|
|
|
TGHDRS= Intrinsics
|
|
|
|
.include "../clang.lib.mk"
|