2001-08-24 01:05:04 +08:00
|
|
|
LEVEL = ../..
|
2001-09-08 06:59:25 +08:00
|
|
|
TOOLNAME = lli
|
2003-01-22 23:41:10 +08:00
|
|
|
PARALLEL_DIRS = Interpreter JIT
|
2002-12-24 07:59:41 +08:00
|
|
|
|
2003-06-18 01:53:35 +08:00
|
|
|
# Get the config name...
|
2003-06-18 02:19:52 +08:00
|
|
|
include $(LEVEL)/Makefile.$(shell uname)
|
2003-06-18 01:53:35 +08:00
|
|
|
|
2003-06-17 23:46:34 +08:00
|
|
|
# Generic JIT libraries
|
|
|
|
JITLIBS = lli-jit codegen
|
|
|
|
ARCHLIBS =
|
|
|
|
|
|
|
|
# What the X86 JIT requires
|
|
|
|
JITLIBS += x86
|
2003-06-17 23:54:52 +08:00
|
|
|
# X86 doesn't require any ARCHLIBS
|
2003-06-17 23:46:34 +08:00
|
|
|
|
2003-06-18 01:53:35 +08:00
|
|
|
|
|
|
|
|
2003-06-17 23:46:34 +08:00
|
|
|
# What the Sparc JIT requires
|
2003-06-17 23:54:52 +08:00
|
|
|
ifeq ($(ARCH),Sparc)
|
2003-06-17 23:46:34 +08:00
|
|
|
JITLIBS += sparc
|
|
|
|
ARCHLIBS = sched livevar instrument.a profpaths transformutils.a \
|
|
|
|
bcwriter transforms.a ipo.a ipa.a datastructure.a regalloc \
|
|
|
|
mapping select postopts.a preopts
|
|
|
|
|
2003-06-17 23:54:52 +08:00
|
|
|
endif
|
|
|
|
|
|
|
|
USEDLIBS = lli-interpreter $(JITLIBS) $(ARCHLIBS) bcreader vmcore scalaropts.a \
|
|
|
|
analysis.a support.a target.a
|
2002-09-14 06:20:19 +08:00
|
|
|
|
|
|
|
# Have gcc tell the linker to export symbols from the program so that
|
|
|
|
# dynamically loaded modules can be linked against them.
|
|
|
|
#
|
2002-11-05 04:50:57 +08:00
|
|
|
TOOLLINKOPTS = -ldl
|
2001-08-24 01:05:04 +08:00
|
|
|
|
2001-09-08 06:59:25 +08:00
|
|
|
include $(LEVEL)/Makefile.common
|