blob: 2009f34950dbd27ded9828f891764e4330462180 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# $NetBSD: Makefile,v 1.4 2023/06/03 08:52:53 lukem Exp $
LIB= LLVMInstrumentation
.include <bsd.init.mk>
.PATH: ${LLVM_SRCDIR}/lib/Transforms/Instrumentation
SRCS+= AddressSanitizer.cpp \
BoundsChecking.cpp \
CGProfile.cpp \
ControlHeightReduction.cpp \
DataFlowSanitizer.cpp \
GCOVProfiling.cpp \
HWAddressSanitizer.cpp \
IndirectCallPromotion.cpp \
InstrOrderFile.cpp \
InstrProfiling.cpp \
Instrumentation.cpp \
MemorySanitizer.cpp \
MemProfiler.cpp \
PGOInstrumentation.cpp \
PGOMemOPSizeOpt.cpp \
PoisonChecking.cpp \
SanitizerCoverage.cpp \
ThreadSanitizer.cpp \
ValueProfileCollector.cpp
.if defined(HOSTLIB)
.include <bsd.hostlib.mk>
.else
.include <bsd.lib.mk>
.endif
CWARNFLAGS.gcc+= ${CC_WNO_ADDRESS_OF_PACKED_MEMBER}
|