opnsense-src/lib/clang/libllvmcore/Makefile
Rui Paulo 582a734e13 Build clang libraries by default with -fno-exceptions and with
-fno-rtti. The clang libaries that really use exceptions and virtual
functions can enable LLVM_REQUIRES_EH and LLVM_REQUIRES_RTTI
respectively. This saves space on the resulting binaries and follows
what's being done upstream.

Submitted by:	Dimitry Andric <dimitry at andric.com>
2010-07-22 19:09:34 +00:00

42 lines
683 B
Makefile

# $FreeBSD$
LIB= llvmcore
SRCDIR= lib/VMCore
SRCS= AsmWriter.cpp \
Attributes.cpp \
AutoUpgrade.cpp \
BasicBlock.cpp \
ConstantFold.cpp \
Constants.cpp \
Core.cpp \
DebugLoc.cpp \
Dominators.cpp \
Function.cpp \
GVMaterializer.cpp \
Globals.cpp \
IRBuilder.cpp \
InlineAsm.cpp \
Instruction.cpp \
Instructions.cpp \
IntrinsicInst.cpp \
LLVMContext.cpp \
LLVMContextImpl.cpp \
LeakDetector.cpp \
Metadata.cpp \
Module.cpp \
Pass.cpp \
PassManager.cpp \
PrintModulePass.cpp \
Type.cpp \
TypeSymbolTable.cpp \
Use.cpp \
Value.cpp \
ValueSymbolTable.cpp \
ValueTypes.cpp \
Verifier.cpp
LLVM_REQUIRES_RTTI=
TGHDRS= Intrinsics
.include "../clang.lib.mk"