From c40c8b333d1b4f885ee0f972f2b91965f3d683fd Mon Sep 17 00:00:00 2001 From: Anton Korobeynikov Date: Sun, 17 Aug 2008 13:55:33 +0000 Subject: [PATCH 1/1] Remove asmprinters from examples by default. This reduces their size by ~5% git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@54890 91177308-0d34-0410-b5e6-96231b3b80d8 --- examples/BrainF/Makefile | 2 +- examples/Fibonacci/Makefile | 2 +- examples/HowToUseJIT/Makefile | 2 +- examples/ParallelJIT/Makefile | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/BrainF/Makefile b/examples/BrainF/Makefile index b1d2a61261f..2c3e0662523 100644 --- a/examples/BrainF/Makefile +++ b/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/examples/Fibonacci/Makefile b/examples/Fibonacci/Makefile index 04d9caef3d7..71f6ba0ef52 100644 --- a/examples/Fibonacci/Makefile +++ b/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/examples/HowToUseJIT/Makefile b/examples/HowToUseJIT/Makefile index 14dfa61c652..c8919db90cc 100644 --- a/examples/HowToUseJIT/Makefile +++ b/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/examples/ParallelJIT/Makefile b/examples/ParallelJIT/Makefile index 5031eca9ac5..8a49d427313 100644 --- a/examples/ParallelJIT/Makefile +++ b/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 -- 2.34.1