summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIain Sandoe <iain@codesourcery.com>2014-09-03 13:12:16 +0000
committerIain Sandoe <iain@codesourcery.com>2014-09-03 13:12:16 +0000
commitd49305bfefbdc7031814c36305231982bb78a464 (patch)
tree4f64cee77dca6410701d990ac4b991dc2a1f19eb
parentf8cfdd9207c67a3cb4db3cb081f3550bcc7f0535 (diff)
downloadbcm5719-llvm-d49305bfefbdc7031814c36305231982bb78a464.tar.gz
bcm5719-llvm-d49305bfefbdc7031814c36305231982bb78a464.zip
Fix configure and make build of llvm examples.
Replaced link component 'jit' with 'mcjit'. llvm-svn: 217032
-rw-r--r--llvm/examples/BrainF/Makefile2
-rw-r--r--llvm/examples/ExceptionDemo/Makefile2
-rw-r--r--llvm/examples/Fibonacci/Makefile2
-rw-r--r--llvm/examples/HowToUseJIT/Makefile2
-rw-r--r--llvm/examples/Kaleidoscope/Chapter4/Makefile2
-rw-r--r--llvm/examples/Kaleidoscope/Chapter5/Makefile2
-rw-r--r--llvm/examples/Kaleidoscope/Chapter6/Makefile2
-rw-r--r--llvm/examples/Kaleidoscope/Chapter7/Makefile2
-rw-r--r--llvm/examples/ParallelJIT/Makefile2
9 files changed, 9 insertions, 9 deletions
diff --git a/llvm/examples/BrainF/Makefile b/llvm/examples/BrainF/Makefile
index 2c3e0662523..3e36e076175 100644
--- a/llvm/examples/BrainF/Makefile
+++ b/llvm/examples/BrainF/Makefile
@@ -10,6 +10,6 @@ LEVEL = ../..
TOOLNAME = BrainF
EXAMPLE_TOOL = 1
-LINK_COMPONENTS := jit bitwriter nativecodegen interpreter
+LINK_COMPONENTS := mcjit bitwriter nativecodegen interpreter
include $(LEVEL)/Makefile.common
diff --git a/llvm/examples/ExceptionDemo/Makefile b/llvm/examples/ExceptionDemo/Makefile
index 58d9def0b7e..895b61dafcd 100644
--- a/llvm/examples/ExceptionDemo/Makefile
+++ b/llvm/examples/ExceptionDemo/Makefile
@@ -11,6 +11,6 @@ TOOLNAME = ExceptionDemo
EXAMPLE_TOOL = 1
REQUIRES_EH = 1
-LINK_COMPONENTS := jit mcjit nativecodegen
+LINK_COMPONENTS := mcjit nativecodegen
include $(LEVEL)/Makefile.common
diff --git a/llvm/examples/Fibonacci/Makefile b/llvm/examples/Fibonacci/Makefile
index 71f6ba0ef52..c99110a2211 100644
--- a/llvm/examples/Fibonacci/Makefile
+++ b/llvm/examples/Fibonacci/Makefile
@@ -12,6 +12,6 @@ TOOLNAME = Fibonacci
EXAMPLE_TOOL = 1
# Link in JIT support
-LINK_COMPONENTS := jit interpreter nativecodegen
+LINK_COMPONENTS := interpreter mcjit nativecodegen
include $(LEVEL)/Makefile.common
diff --git a/llvm/examples/HowToUseJIT/Makefile b/llvm/examples/HowToUseJIT/Makefile
index c8919db90cc..26a25a12bf2 100644
--- a/llvm/examples/HowToUseJIT/Makefile
+++ b/llvm/examples/HowToUseJIT/Makefile
@@ -10,6 +10,6 @@ LEVEL = ../..
TOOLNAME = HowToUseJIT
EXAMPLE_TOOL = 1
-LINK_COMPONENTS := jit interpreter nativecodegen
+LINK_COMPONENTS := mcjit interpreter nativecodegen
include $(LEVEL)/Makefile.common
diff --git a/llvm/examples/Kaleidoscope/Chapter4/Makefile b/llvm/examples/Kaleidoscope/Chapter4/Makefile
index 30162d94bce..6d6a6706fff 100644
--- a/llvm/examples/Kaleidoscope/Chapter4/Makefile
+++ b/llvm/examples/Kaleidoscope/Chapter4/Makefile
@@ -10,6 +10,6 @@ LEVEL = ../../..
TOOLNAME = Kaleidoscope-Ch4
EXAMPLE_TOOL = 1
-LINK_COMPONENTS := core jit native
+LINK_COMPONENTS := core mcjit native
include $(LEVEL)/Makefile.common
diff --git a/llvm/examples/Kaleidoscope/Chapter5/Makefile b/llvm/examples/Kaleidoscope/Chapter5/Makefile
index d1f5e2035b4..d7809672303 100644
--- a/llvm/examples/Kaleidoscope/Chapter5/Makefile
+++ b/llvm/examples/Kaleidoscope/Chapter5/Makefile
@@ -10,6 +10,6 @@ LEVEL = ../../..
TOOLNAME = Kaleidoscope-Ch5
EXAMPLE_TOOL = 1
-LINK_COMPONENTS := core jit native
+LINK_COMPONENTS := core mcjit native
include $(LEVEL)/Makefile.common
diff --git a/llvm/examples/Kaleidoscope/Chapter6/Makefile b/llvm/examples/Kaleidoscope/Chapter6/Makefile
index a5fbcbdf9b2..8f47ea0d98e 100644
--- a/llvm/examples/Kaleidoscope/Chapter6/Makefile
+++ b/llvm/examples/Kaleidoscope/Chapter6/Makefile
@@ -10,6 +10,6 @@ LEVEL = ../../..
TOOLNAME = Kaleidoscope-Ch6
EXAMPLE_TOOL = 1
-LINK_COMPONENTS := core jit native
+LINK_COMPONENTS := core mcjit native
include $(LEVEL)/Makefile.common
diff --git a/llvm/examples/Kaleidoscope/Chapter7/Makefile b/llvm/examples/Kaleidoscope/Chapter7/Makefile
index 6cec323efd4..7abeb3e5b67 100644
--- a/llvm/examples/Kaleidoscope/Chapter7/Makefile
+++ b/llvm/examples/Kaleidoscope/Chapter7/Makefile
@@ -11,6 +11,6 @@ TOOLNAME = Kaleidoscope-Ch7
EXAMPLE_TOOL = 1
REQUIRES_RTTI := 1
-LINK_COMPONENTS := core jit native
+LINK_COMPONENTS := core mcjit native
include $(LEVEL)/Makefile.common
diff --git a/llvm/examples/ParallelJIT/Makefile b/llvm/examples/ParallelJIT/Makefile
index 8a49d427313..0f2a3575f76 100644
--- a/llvm/examples/ParallelJIT/Makefile
+++ b/llvm/examples/ParallelJIT/Makefile
@@ -10,7 +10,7 @@ LEVEL = ../..
TOOLNAME = ParallelJIT
EXAMPLE_TOOL = 1
-LINK_COMPONENTS := jit interpreter nativecodegen
+LINK_COMPONENTS := mcjit interpreter nativecodegen
include $(LEVEL)/Makefile.common
OpenPOWER on IntegriCloud