diff --git a/llvm/examples/BrainF/Makefile b/llvm/examples/BrainF/Makefile index b1d2a61261f8..2c3e0662523d 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 native interpreter +LINK_COMPONENTS := jit bitwriter nativecodegen interpreter include $(LEVEL)/Makefile.common diff --git a/llvm/examples/Fibonacci/Makefile b/llvm/examples/Fibonacci/Makefile index 04d9caef3d77..71f6ba0ef52e 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 native +LINK_COMPONENTS := jit interpreter nativecodegen include $(LEVEL)/Makefile.common diff --git a/llvm/examples/HowToUseJIT/Makefile b/llvm/examples/HowToUseJIT/Makefile index 14dfa61c652e..c8919db90cc2 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 native +LINK_COMPONENTS := jit interpreter nativecodegen include $(LEVEL)/Makefile.common diff --git a/llvm/examples/ParallelJIT/Makefile b/llvm/examples/ParallelJIT/Makefile index 5031eca9ac51..8a49d4273132 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 native +LINK_COMPONENTS := jit interpreter nativecodegen include $(LEVEL)/Makefile.common