2003-10-20 22:29:16 +00:00
|
|
|
##===- tools/lli/Makefile ------------------------------*- Makefile -*-===##
|
|
|
|
#
|
|
|
|
# The LLVM Compiler Infrastructure
|
|
|
|
#
|
|
|
|
# This file was developed by the LLVM research group and is distributed under
|
|
|
|
# the University of Illinois Open Source License. See LICENSE.TXT for details.
|
|
|
|
#
|
|
|
|
##===----------------------------------------------------------------------===##
|
2001-08-23 17:05:04 +00:00
|
|
|
LEVEL = ../..
|
2001-09-07 22:59:25 +00:00
|
|
|
TOOLNAME = lli
|
2002-12-23 23:59:41 +00:00
|
|
|
|
2003-07-02 17:53:19 +00:00
|
|
|
# Get the $(ARCH) setting
|
2003-06-30 21:59:07 +00:00
|
|
|
include $(LEVEL)/Makefile.config
|
2003-06-17 17:53:35 +00:00
|
|
|
|
2003-06-17 15:46:34 +00:00
|
|
|
# Generic JIT libraries
|
2003-09-05 19:42:34 +00:00
|
|
|
JITLIBS = lli-jit codegen executionengine
|
2003-06-17 15:46:34 +00:00
|
|
|
ARCHLIBS =
|
|
|
|
|
2003-07-02 17:53:19 +00:00
|
|
|
# You can enable the X86 JIT on a non-X86 host by setting the flag
|
|
|
|
# ENABLE_X86_JIT on the make command line. If not, it will still be
|
|
|
|
# enabled automagically on an X86 host.
|
|
|
|
ifeq ($(ARCH), x86)
|
|
|
|
ENABLE_X86_JIT = 1
|
|
|
|
endif
|
2003-06-17 15:46:34 +00:00
|
|
|
|
2003-07-02 17:53:19 +00:00
|
|
|
# What the X86 JIT requires
|
|
|
|
ifdef ENABLE_X86_JIT
|
|
|
|
CPPFLAGS += -DENABLE_X86_JIT
|
2003-08-15 04:56:09 +00:00
|
|
|
JITLIBS += x86 selectiondag
|
2003-07-02 17:53:19 +00:00
|
|
|
# X86 doesn't require any ARCHLIBS
|
|
|
|
endif
|
2003-06-17 17:53:35 +00:00
|
|
|
|
2003-07-02 17:53:19 +00:00
|
|
|
# You can enable the Sparc JIT on a non-Sparc host by setting the flag
|
|
|
|
# ENABLE_SPARC_JIT on the make command line. If not, it will still be
|
|
|
|
# enabled automagically on an Sparc host.
|
|
|
|
ifeq ($(ARCH), Sparc)
|
|
|
|
ENABLE_SPARC_JIT = 1
|
|
|
|
endif
|
2003-06-17 17:53:35 +00:00
|
|
|
|
2003-06-17 15:46:34 +00:00
|
|
|
# What the Sparc JIT requires
|
2003-07-02 17:53:19 +00:00
|
|
|
ifdef ENABLE_SPARC_JIT
|
|
|
|
CPPFLAGS += -DENABLE_SPARC_JIT
|
2004-02-25 19:08:12 +00:00
|
|
|
JITLIBS += sparcv9
|
|
|
|
ARCHLIBS += sched sparcv9livevar instrument.a profpaths \
|
|
|
|
bcwriter transforms.a ipo.a ipa.a datastructure.a \
|
|
|
|
sparcv9regalloc sparcv9select
|
2003-06-17 15:54:52 +00:00
|
|
|
endif
|
|
|
|
|
2003-06-17 19:14:59 +00:00
|
|
|
USEDLIBS = lli-interpreter $(JITLIBS) $(ARCHLIBS) scalaropts analysis.a \
|
2003-07-28 19:06:19 +00:00
|
|
|
transformutils.a bcreader vmcore support target.a
|
2002-09-13 22:20:19 +00:00
|
|
|
|
|
|
|
# Have gcc tell the linker to export symbols from the program so that
|
|
|
|
# dynamically loaded modules can be linked against them.
|
|
|
|
#
|
2003-06-17 20:09:18 +00:00
|
|
|
TOOLLINKOPTS = $(PLATFORMLIBDL)
|
2001-08-23 17:05:04 +00:00
|
|
|
|
2001-09-07 22:59:25 +00:00
|
|
|
include $(LEVEL)/Makefile.common
|