mirror of
https://github.com/opnsense/src.git
synced 2026-04-15 14:29:58 -04:00
-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>
27 lines
420 B
Makefile
27 lines
420 B
Makefile
# $FreeBSD$
|
|
|
|
LIB= llvmsystem
|
|
|
|
SRCDIR= lib/System
|
|
SRCS= Alarm.cpp \
|
|
Atomic.cpp \
|
|
Disassembler.cpp \
|
|
DynamicLibrary.cpp \
|
|
Errno.cpp \
|
|
Host.cpp \
|
|
IncludeFile.cpp \
|
|
Memory.cpp \
|
|
Mutex.cpp \
|
|
Path.cpp \
|
|
Process.cpp \
|
|
Program.cpp \
|
|
RWMutex.cpp \
|
|
SearchForAddressOfSpecialSymbol.cpp \
|
|
Signals.cpp \
|
|
ThreadLocal.cpp \
|
|
Threading.cpp \
|
|
TimeValue.cpp \
|
|
Valgrind.cpp
|
|
LLVM_REQUIRES_RTTI=
|
|
|
|
.include "../clang.lib.mk"
|