forked from OSchip/llvm-project
Make sure to get the value of ARCH before we use it
llvm-svn: 6746
This commit is contained in:
parent
d9cc372613
commit
f9f0005af7
|
@ -2,6 +2,9 @@ LEVEL = ../..
|
|||
TOOLNAME = lli
|
||||
PARALLEL_DIRS = Interpreter JIT
|
||||
|
||||
# Get the config name...
|
||||
include $(LEVEL)/Makefile.config
|
||||
|
||||
# Generic JIT libraries
|
||||
JITLIBS = lli-jit codegen
|
||||
ARCHLIBS =
|
||||
|
@ -10,6 +13,8 @@ ARCHLIBS =
|
|||
JITLIBS += x86
|
||||
# X86 doesn't require any ARCHLIBS
|
||||
|
||||
|
||||
|
||||
# What the Sparc JIT requires
|
||||
ifeq ($(ARCH),Sparc)
|
||||
JITLIBS += sparc
|
||||
|
|
|
@ -2,6 +2,9 @@ LEVEL = ../..
|
|||
TOOLNAME = lli
|
||||
PARALLEL_DIRS = Interpreter JIT
|
||||
|
||||
# Get the config name...
|
||||
include $(LEVEL)/Makefile.config
|
||||
|
||||
# Generic JIT libraries
|
||||
JITLIBS = lli-jit codegen
|
||||
ARCHLIBS =
|
||||
|
@ -10,6 +13,8 @@ ARCHLIBS =
|
|||
JITLIBS += x86
|
||||
# X86 doesn't require any ARCHLIBS
|
||||
|
||||
|
||||
|
||||
# What the Sparc JIT requires
|
||||
ifeq ($(ARCH),Sparc)
|
||||
JITLIBS += sparc
|
||||
|
|
Loading…
Reference in New Issue