Remove asmprinters from examples by default. This reduces their size by ~5%
authorAnton Korobeynikov <asl@math.spbu.ru>
Sun, 17 Aug 2008 13:55:33 +0000 (13:55 +0000)
committerAnton Korobeynikov <asl@math.spbu.ru>
Sun, 17 Aug 2008 13:55:33 +0000 (13:55 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@54890 91177308-0d34-0410-b5e6-96231b3b80d8

examples/BrainF/Makefile
examples/Fibonacci/Makefile
examples/HowToUseJIT/Makefile
examples/ParallelJIT/Makefile

index b1d2a61..2c3e066 100644 (file)
@@ -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
index 04d9cae..71f6ba0 100644 (file)
@@ -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
index 14dfa61..c8919db 100644 (file)
@@ -10,6 +10,6 @@ LEVEL = ../..
 TOOLNAME = HowToUseJIT
 EXAMPLE_TOOL = 1
 
-LINK_COMPONENTS := jit interpreter native
+LINK_COMPONENTS := jit interpreter nativecodegen
 
 include $(LEVEL)/Makefile.common
index 5031eca..8a49d42 100644 (file)
@@ -10,7 +10,7 @@ LEVEL = ../..
 TOOLNAME = ParallelJIT
 EXAMPLE_TOOL = 1
 
-LINK_COMPONENTS := jit interpreter native
+LINK_COMPONENTS := jit interpreter nativecodegen
 
 include $(LEVEL)/Makefile.common