Make sure to get the value of ARCH before we use it

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6746 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2003-06-17 17:53:35 +00:00
parent 2bf4c61557
commit d562436355
2 changed files with 10 additions and 0 deletions

View File

@ -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

View File

@ -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