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
diff --git a/examples/Fibonacci/Makefile b/examples/Fibonacci/Makefile
index 04d9cae..71f6ba0 100644
--- a/examples/Fibonacci/Makefile
+++ b/examples/Fibonacci/Makefile
@@ -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