Skip to content

Commit

Permalink
Fix configure and make build of llvm examples.
Browse files Browse the repository at this point in the history
Replaced link component 'jit' with 'mcjit'.




git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@217032 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
iains committed Sep 3, 2014
1 parent a80ff26 commit b449c28
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion examples/BrainF/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion examples/ExceptionDemo/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion examples/Fibonacci/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion examples/HowToUseJIT/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ LEVEL = ../..
TOOLNAME = HowToUseJIT
EXAMPLE_TOOL = 1

LINK_COMPONENTS := jit interpreter nativecodegen
LINK_COMPONENTS := mcjit interpreter nativecodegen

include $(LEVEL)/Makefile.common
2 changes: 1 addition & 1 deletion examples/Kaleidoscope/Chapter4/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion examples/Kaleidoscope/Chapter5/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion examples/Kaleidoscope/Chapter6/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion examples/Kaleidoscope/Chapter7/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion examples/ParallelJIT/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ LEVEL = ../..
TOOLNAME = ParallelJIT
EXAMPLE_TOOL = 1

LINK_COMPONENTS := jit interpreter nativecodegen
LINK_COMPONENTS := mcjit interpreter nativecodegen

include $(LEVEL)/Makefile.common

Expand Down

0 comments on commit b449c28

Please sign in to comment.