[llvm-commits] [llvm] r54890 - in /llvm/trunk/examples: BrainF/Makefile Fibonacci/Makefile HowToUseJIT/Makefile ParallelJIT/Makefile
Anton Korobeynikov
asl at math.spbu.ru
Sun Aug 17 06:55:34 PDT 2008
Author: asl
Date: Sun Aug 17 08:55:33 2008
New Revision: 54890
URL: http://llvm.org/viewvc/llvm-project?rev=54890&view=rev
Log:
Remove asmprinters from examples by default. This reduces their size by ~5%
Modified:
llvm/trunk/examples/BrainF/Makefile
llvm/trunk/examples/Fibonacci/Makefile
llvm/trunk/examples/HowToUseJIT/Makefile
llvm/trunk/examples/ParallelJIT/Makefile
Modified: llvm/trunk/examples/BrainF/Makefile
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/examples/BrainF/Makefile?rev=54890&r1=54889&r2=54890&view=diff
==============================================================================
--- llvm/trunk/examples/BrainF/Makefile (original)
+++ llvm/trunk/examples/BrainF/Makefile Sun Aug 17 08:55:33 2008
@@ -10,6 +10,6 @@
TOOLNAME = BrainF
EXAMPLE_TOOL = 1
-LINK_COMPONENTS := jit bitwriter native interpreter
+LINK_COMPONENTS := jit bitwriter nativecodegen interpreter
include $(LEVEL)/Makefile.common
Modified: llvm/trunk/examples/Fibonacci/Makefile
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/examples/Fibonacci/Makefile?rev=54890&r1=54889&r2=54890&view=diff
==============================================================================
--- llvm/trunk/examples/Fibonacci/Makefile (original)
+++ llvm/trunk/examples/Fibonacci/Makefile Sun Aug 17 08:55:33 2008
@@ -12,6 +12,6 @@
EXAMPLE_TOOL = 1
# Link in JIT support
-LINK_COMPONENTS := jit interpreter native
+LINK_COMPONENTS := jit interpreter nativecodegen
include $(LEVEL)/Makefile.common
Modified: llvm/trunk/examples/HowToUseJIT/Makefile
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/examples/HowToUseJIT/Makefile?rev=54890&r1=54889&r2=54890&view=diff
==============================================================================
--- llvm/trunk/examples/HowToUseJIT/Makefile (original)
+++ llvm/trunk/examples/HowToUseJIT/Makefile Sun Aug 17 08:55:33 2008
@@ -10,6 +10,6 @@
TOOLNAME = HowToUseJIT
EXAMPLE_TOOL = 1
-LINK_COMPONENTS := jit interpreter native
+LINK_COMPONENTS := jit interpreter nativecodegen
include $(LEVEL)/Makefile.common
Modified: llvm/trunk/examples/ParallelJIT/Makefile
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/examples/ParallelJIT/Makefile?rev=54890&r1=54889&r2=54890&view=diff
==============================================================================
--- llvm/trunk/examples/ParallelJIT/Makefile (original)
+++ llvm/trunk/examples/ParallelJIT/Makefile Sun Aug 17 08:55:33 2008
@@ -10,7 +10,7 @@
TOOLNAME = ParallelJIT
EXAMPLE_TOOL = 1
-LINK_COMPONENTS := jit interpreter native
+LINK_COMPONENTS := jit interpreter nativecodegen
include $(LEVEL)/Makefile.common
More information about the llvm-commits
mailing list