blob: da98f66116f44e59340df1c72c91b85c87bd10c9 (
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
|
LEVEL = ../..
TOOLNAME = lli
PARALLEL_DIRS = Interpreter JIT
# Get the config name...
include $(LEVEL)/Makefile.$(shell uname)
# Generic JIT libraries
JITLIBS = lli-jit codegen
ARCHLIBS =
# What the X86 JIT requires
JITLIBS += x86
# X86 doesn't require any ARCHLIBS
# What the Sparc JIT requires
ifeq ($(ARCH),Sparc)
JITLIBS += sparc
ARCHLIBS = sched livevar instrument.a profpaths \
bcwriter transforms.a ipo.a ipa.a datastructure.a regalloc \
mapping select postopts.a preopts
endif
USEDLIBS = lli-interpreter $(JITLIBS) $(ARCHLIBS) scalaropts analysis.a \
transformutils.a bcreader vmcore support.a target.a
# Have gcc tell the linker to export symbols from the program so that
# dynamically loaded modules can be linked against them.
#
TOOLLINKOPTS = -ldl
include $(LEVEL)/Makefile.common
|