From ddc31e813d3bc6365e4a74a593c324d9a534bbb8 Mon Sep 17 00:00:00 2001 From: Andrew Lenharth Date: Fri, 22 Jul 2005 20:54:01 +0000 Subject: Alpha has JIT git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22501 91177308-0d34-0410-b5e6-96231b3b80d8 --- Makefile.rules | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'Makefile.rules') diff --git a/Makefile.rules b/Makefile.rules index ae4e65247f..f6e3467e78 100644 --- a/Makefile.rules +++ b/Makefile.rules @@ -602,6 +602,18 @@ ifdef ENABLE_PPC_JIT JIT_LIBS += LLVMPowerPC LLVMSelectionDAG endif +# You can enable the Alpha JIT on a non-Alpha host by setting the flag +# ENABLE_ALPHA_JIT on the make command line. If not, it will still be +# enabled automagically on an PowerPC host. +ifeq ($(ARCH), Alpha) + ENABLE_ALPHA_JIT = 1 +endif + +# What the PowerPC JIT requires +ifdef ENABLE_ALPHA_JIT + JIT_LIBS += LLVMAlpha LLVMSelectionDAG +endif + LLVMLIBS := $(JIT_LIBS) LLVMScalarOpts LLVMAnalysis.a LLVMTransformUtils.a \ LLVMBCReader LLVMCore LLVMSupport.a LLVMTarget.a LLVMbzip2 \ LLVMSystem.a $(PLATFORMLIBDL) -- cgit v1.2.3