blob: 0bd8729e0d2b4d02d2dbd93fae4e95df84d3cb69 (
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
36
37
38
|
# $NetBSD: Makefile,v 1.2 2021/05/30 01:56:53 joerg Exp $
LIB= LLVMOrc
.include <bsd.init.mk>
.PATH: ${LLVM_SRCDIR}/lib/ExecutionEngine/Orc
SRCS+= CompileOnDemandLayer.cpp \
CompileUtils.cpp \
Core.cpp \
DebugObjectManagerPlugin.cpp \
DebugUtils.cpp \
ExecutionUtils.cpp \
IndirectionUtils.cpp \
IRCompileLayer.cpp \
IRTransformLayer.cpp \
JITTargetMachineBuilder.cpp \
Layer.cpp \
LazyReexports.cpp \
LLJIT.cpp \
MachOPlatform.cpp \
Mangling.cpp \
ObjectLinkingLayer.cpp \
ObjectTransformLayer.cpp \
OrcABISupport.cpp \
OrcV2CBindings.cpp \
RTDyldObjectLinkingLayer.cpp \
SpeculateAnalyses.cpp \
Speculation.cpp \
TargetProcessControl.cpp \
ThreadSafeModule.cpp \
TPCDebugObjectRegistrar.cpp \
TPCDynamicLibrarySearchGenerator.cpp \
TPCEHFrameRegistrar.cpp \
TPCIndirectionUtils.cpp
.include <bsd.lib.mk>
|