diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2004-10-14 20:06:36 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2004-10-14 20:06:36 +0000 |
commit | 56cb207a39c925a5013ef8c71cbd5c5bdadbe512 (patch) | |
tree | e7d856b0d07a43104f6f3bae8b7ee56adedcec65 | |
parent | b23cd2f6887d2d6333bc596d88eb93aa2e2a04e4 (diff) | |
download | external_llvm-56cb207a39c925a5013ef8c71cbd5c5bdadbe512.zip external_llvm-56cb207a39c925a5013ef8c71cbd5c5bdadbe512.tar.gz external_llvm-56cb207a39c925a5013ef8c71cbd5c5bdadbe512.tar.bz2 |
* We don't use the ENABLE_*_JIT flags in the source base anymore
* Convert references to Sparc to SparcV9 to clearly identify CPU type
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16998 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | tools/Makefile.JIT | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/tools/Makefile.JIT b/tools/Makefile.JIT index a59fa66..8c9e5b0 100644 --- a/tools/Makefile.JIT +++ b/tools/Makefile.JIT @@ -30,21 +30,19 @@ endif # What the X86 JIT requires ifdef ENABLE_X86_JIT - CPPFLAGS += -DENABLE_X86_JIT JITLIBS += x86 selectiondag # X86 doesn't require any ARCHLIBS endif -# 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. +# You can enable the SparcV9 JIT on a non-SparcV9 host by setting the flag +# ENABLE_SPARCV9_JIT on the make command line. If not, it will still be +# enabled automagically on an SparcV9 host. ifeq ($(ARCH), Sparc) - ENABLE_SPARC_JIT = 1 + ENABLE_SPARCV9_JIT = 1 endif # What the Sparc JIT requires -ifdef ENABLE_SPARC_JIT - CPPFLAGS += -DENABLE_SPARC_JIT +ifdef ENABLE_SPARCV9_JIT JITLIBS += sparcv9 ARCHLIBS += sparcv9sched sparcv9livevar instrument.a profpaths \ bcwriter transforms.a ipo.a ipa.a datastructure.a \ @@ -60,7 +58,6 @@ endif # What the PowerPC JIT requires ifdef ENABLE_PPC_JIT - CPPFLAGS += -DENABLE_PPC_JIT JITLIBS += powerpc endif |