From: NAKAMURA Takumi Date: Tue, 10 Dec 2013 12:40:11 +0000 (+0000) Subject: Add ObjCARCOpts to LINK_COMPONENTS. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d2c03c91601f63bc05c4a41ed2baed53f1807616;p=clang Add ObjCARCOpts to LINK_COMPONENTS. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@196915 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/examples/clang-interpreter/Makefile b/examples/clang-interpreter/Makefile index 55a8e6fb0f..6494e9affd 100644 --- a/examples/clang-interpreter/Makefile +++ b/examples/clang-interpreter/Makefile @@ -16,7 +16,7 @@ NO_INSTALL = 1 TOOL_NO_EXPORTS = 1 LINK_COMPONENTS := jit interpreter nativecodegen bitreader bitwriter irreader \ - ipo linker selectiondag asmparser instrumentation option + ipo linker selectiondag asmparser instrumentation objcarcopts option USEDLIBS = clangFrontend.a clangSerialization.a clangDriver.a clangCodeGen.a \ clangParse.a clangSema.a clangStaticAnalyzerFrontend.a \ clangStaticAnalyzerCheckers.a clangStaticAnalyzerCore.a \ diff --git a/tools/driver/Makefile b/tools/driver/Makefile index f7a9f8f36e..562b902d83 100644 --- a/tools/driver/Makefile +++ b/tools/driver/Makefile @@ -30,7 +30,8 @@ TOOL_INFO_PLIST := Info.plist include $(CLANG_LEVEL)/../../Makefile.config LINK_COMPONENTS := $(TARGETS_TO_BUILD) asmparser bitreader bitwriter codegen \ - instrumentation ipo irreader linker selectiondag option + instrumentation ipo irreader linker objcarcopts option \ + selectiondag USEDLIBS = clangFrontendTool.a clangFrontend.a clangDriver.a \ clangSerialization.a clangCodeGen.a clangParse.a clangSema.a