X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=tools%2Flli%2FMakefile;h=b070cee27146c4deefc8405bd583047c7ba696bd;hb=ebcba612b537f45a033ccd9a60bee0c45e2e2ded;hp=54ed699f9e1279f41e99b56e305aa3c91942fea0;hpb=7a5500e2f6f766d25ae94e8cff083d767476ecef;p=oota-llvm.git diff --git a/tools/lli/Makefile b/tools/lli/Makefile index 54ed699f9e1..b070cee2714 100644 --- a/tools/lli/Makefile +++ b/tools/lli/Makefile @@ -1,30 +1,15 @@ -LEVEL = ../.. -TOOLNAME = lli -PARALLEL_DIRS = Interpreter JIT - -# FIXME: This enables testing the Sparc JIT on x86. -# Perhaps in the future this should be a ./configure option. - -# Generic JIT libraries -JITLIBS = lli-jit codegen -ARCHLIBS = - -# What the X86 JIT requires -JITLIBS += x86 -ARCHLIBS += - -# What the Sparc JIT requires -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 - -USEDLIBS = lli-interpreter $(JITLIBS) bcreader vmcore scalaropts \ - analysis.a support.a target.a $(ARCHLIBS) - -# Have gcc tell the linker to export symbols from the program so that -# dynamically loaded modules can be linked against them. +##===- tools/lli/Makefile ------------------------------*- Makefile -*-===## +# +# The LLVM Compiler Infrastructure # -TOOLLINKOPTS = -ldl +# This file is distributed under the University of Illinois Open Source +# License. See LICENSE.TXT for details. +# +##===----------------------------------------------------------------------===## + +LEVEL := ../.. +TOOLNAME := lli +LINK_COMPONENTS := jit interpreter native bitreader selectiondag +# Enable JIT support include $(LEVEL)/Makefile.common