Roll r96559 forward again, adding libLLVM-2.7svn.so to LLVM. This links 3 of

the examples shared to make sure the shared library keeps working.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@96959 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Jeffrey Yasskin
2010-02-23 18:10:07 +00:00
parent e3d97c7447
commit ea6c39d417
13 changed files with 169 additions and 12 deletions

View File

@@ -9,6 +9,9 @@
LEVEL = ../..
TOOLNAME = BrainF
EXAMPLE_TOOL = 1
# To keep the shared library working, we link a few of the examples
# against it unconditionally.
ENABLE_SHARED = 1
LINK_COMPONENTS := jit bitwriter nativecodegen interpreter

View File

@@ -10,6 +10,9 @@
LEVEL = ../..
TOOLNAME = Fibonacci
EXAMPLE_TOOL = 1
# To keep the shared library working, we link a few of the examples
# against it unconditionally.
ENABLE_SHARED = 1
# Link in JIT support
LINK_COMPONENTS := jit interpreter nativecodegen

View File

@@ -9,6 +9,9 @@
LEVEL = ../..
TOOLNAME = HowToUseJIT
EXAMPLE_TOOL = 1
# To keep the shared library working, we link a few of the examples
# against it unconditionally.
ENABLE_SHARED = 1
LINK_COMPONENTS := jit interpreter nativecodegen