Skip to content

Commit d49305b

Browse files
committed
Fix configure and make build of llvm examples.
Replaced link component 'jit' with 'mcjit'. llvm-svn: 217032
1 parent f8cfdd9 commit d49305b

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

llvm/examples/BrainF/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ LEVEL = ../..
1010
TOOLNAME = BrainF
1111
EXAMPLE_TOOL = 1
1212

13-
LINK_COMPONENTS := jit bitwriter nativecodegen interpreter
13+
LINK_COMPONENTS := mcjit bitwriter nativecodegen interpreter
1414

1515
include $(LEVEL)/Makefile.common

llvm/examples/ExceptionDemo/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ TOOLNAME = ExceptionDemo
1111
EXAMPLE_TOOL = 1
1212
REQUIRES_EH = 1
1313

14-
LINK_COMPONENTS := jit mcjit nativecodegen
14+
LINK_COMPONENTS := mcjit nativecodegen
1515

1616
include $(LEVEL)/Makefile.common

llvm/examples/Fibonacci/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ TOOLNAME = Fibonacci
1212
EXAMPLE_TOOL = 1
1313

1414
# Link in JIT support
15-
LINK_COMPONENTS := jit interpreter nativecodegen
15+
LINK_COMPONENTS := interpreter mcjit nativecodegen
1616

1717
include $(LEVEL)/Makefile.common

llvm/examples/HowToUseJIT/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ LEVEL = ../..
1010
TOOLNAME = HowToUseJIT
1111
EXAMPLE_TOOL = 1
1212

13-
LINK_COMPONENTS := jit interpreter nativecodegen
13+
LINK_COMPONENTS := mcjit interpreter nativecodegen
1414

1515
include $(LEVEL)/Makefile.common

llvm/examples/Kaleidoscope/Chapter4/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ LEVEL = ../../..
1010
TOOLNAME = Kaleidoscope-Ch4
1111
EXAMPLE_TOOL = 1
1212

13-
LINK_COMPONENTS := core jit native
13+
LINK_COMPONENTS := core mcjit native
1414

1515
include $(LEVEL)/Makefile.common

llvm/examples/Kaleidoscope/Chapter5/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ LEVEL = ../../..
1010
TOOLNAME = Kaleidoscope-Ch5
1111
EXAMPLE_TOOL = 1
1212

13-
LINK_COMPONENTS := core jit native
13+
LINK_COMPONENTS := core mcjit native
1414

1515
include $(LEVEL)/Makefile.common

llvm/examples/Kaleidoscope/Chapter6/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ LEVEL = ../../..
1010
TOOLNAME = Kaleidoscope-Ch6
1111
EXAMPLE_TOOL = 1
1212

13-
LINK_COMPONENTS := core jit native
13+
LINK_COMPONENTS := core mcjit native
1414

1515
include $(LEVEL)/Makefile.common

llvm/examples/Kaleidoscope/Chapter7/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ TOOLNAME = Kaleidoscope-Ch7
1111
EXAMPLE_TOOL = 1
1212
REQUIRES_RTTI := 1
1313

14-
LINK_COMPONENTS := core jit native
14+
LINK_COMPONENTS := core mcjit native
1515

1616
include $(LEVEL)/Makefile.common

llvm/examples/ParallelJIT/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ LEVEL = ../..
1010
TOOLNAME = ParallelJIT
1111
EXAMPLE_TOOL = 1
1212

13-
LINK_COMPONENTS := jit interpreter nativecodegen
13+
LINK_COMPONENTS := mcjit interpreter nativecodegen
1414

1515
include $(LEVEL)/Makefile.common
1616

0 commit comments

Comments
 (0)