diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2004-10-14 19:02:13 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2004-10-14 19:02:13 +0000 |
commit | f9898d718913a16097a1bdc1e9fd7bf81c14040a (patch) | |
tree | e532983b86ee3987aaa9d4c8cb7bdc35c3f7654c /llvm/examples/HowToUseJIT | |
parent | 7c169be339338533af747e679b462cbbf65e31b7 (diff) | |
download | bcm5719-llvm-f9898d718913a16097a1bdc1e9fd7bf81c14040a.tar.gz bcm5719-llvm-f9898d718913a16097a1bdc1e9fd7bf81c14040a.zip |
Use the shared Makefile.JIT for JIT-enablement, which also enables the examples
to have the JIT functioning on more platforms than just x86
llvm-svn: 16993
Diffstat (limited to 'llvm/examples/HowToUseJIT')
-rw-r--r-- | llvm/examples/HowToUseJIT/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/examples/HowToUseJIT/Makefile b/llvm/examples/HowToUseJIT/Makefile index 3b3947e6906..3312eb82093 100644 --- a/llvm/examples/HowToUseJIT/Makefile +++ b/llvm/examples/HowToUseJIT/Makefile @@ -8,8 +8,8 @@ ##===----------------------------------------------------------------------===## LEVEL = ../.. TOOLNAME = HowToUseJIT -USEDLIBS = lli-jit lli-interpreter codegen executionengine x86 selectiondag \ - scalaropts analysis.a transformutils.a bcreader target.a vmcore \ - support.a LLVMsystem.a + +# Enable JIT support +include $(LEVEL)/tools/Makefile.JIT include $(LEVEL)/Makefile.common |