1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00

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

llvm-svn: 6746
This commit is contained in:
Chris Lattner 2003-06-17 17:53:35 +00:00
parent 0c7e4fdfa2
commit 85f1b38638
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