From 789587f12846196edf43b94b906dba516734edc8 Mon Sep 17 00:00:00 2001 From: Misha Brukman Date: Thu, 14 Oct 2004 06:35:11 +0000 Subject: [PATCH] Enable the PowerPC JIT by compiling powerpc.o library into lli llvm-svn: 16982 --- llvm/tools/lli/Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/llvm/tools/lli/Makefile b/llvm/tools/lli/Makefile index d43fce316245..a8e1c4448695 100644 --- a/llvm/tools/lli/Makefile +++ b/llvm/tools/lli/Makefile @@ -46,6 +46,19 @@ ifdef ENABLE_SPARC_JIT sparcv9regalloc endif +# You can enable the PowerPC JIT on a non-PowerPC host by setting the flag +# ENABLE_PPC_JIT on the make command line. If not, it will still be +# enabled automagically on an PowerPC host. +ifeq ($(ARCH), PowerPC) + ENABLE_PPC_JIT = 1 +endif + +# What the PowerPC JIT requires +ifdef ENABLE_PPC_JIT + CPPFLAGS += -DENABLE_PPC_JIT + JITLIBS += powerpc +endif + USEDLIBS = lli-interpreter $(JITLIBS) $(ARCHLIBS) scalaropts analysis.a \ transformutils.a bcreader vmcore support target.a LLVMsystem.a