diff options
Diffstat (limited to 'clang/tools/c-index-test/Makefile')
-rw-r--r-- | clang/tools/c-index-test/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/clang/tools/c-index-test/Makefile b/clang/tools/c-index-test/Makefile index 74bed7750b2..62bc9348dbf 100644 --- a/clang/tools/c-index-test/Makefile +++ b/clang/tools/c-index-test/Makefile @@ -14,20 +14,21 @@ TOOLNAME = c-index-test # when installing c-index-test. INTERNAL_TOOL = 1 +# No plugins, optimize startup time. +TOOL_NO_EXPORTS = 1 + # Include this here so we can get the configuration of the targets that have # been configured for construction. We have to do this early so we can set up # LINK_COMPONENTS before including Makefile.rules include $(CLANG_LEVEL)/../../Makefile.config -LINK_COMPONENTS := $(TARGETS_TO_BUILD) asmparser bitreader bitwriter \ - instrumentation ipo support mc objcarcopts option +LINK_COMPONENTS := $(TARGETS_TO_BUILD) asmparser bitreader support mc option # Note that 'USEDLIBS' must include all of the core clang libraries # when -static is given to linker on cygming. USEDLIBS = clang.a \ clangIndex.a clangFormat.a clangRewrite.a \ - clangCodeGen.a \ - clangFrontend.a clangCodeGen.a clangDriver.a \ + clangFrontend.a clangDriver.a \ clangTooling.a \ clangToolingCore.a \ clangSerialization.a clangParse.a clangSema.a \ |