forked from OSchip/llvm-project
Don't link ObjCARCOpts twice. Fixes PR22543
ObjCARCOpts is already included by ClangCodeGen. Linking it again causes the error in PR22543. Differential Revision: http://reviews.llvm.org/D10399 llvm-svn: 240104
This commit is contained in:
parent
ce86c9962c
commit
c847e7e543
|
@ -86,7 +86,6 @@ USEDLIBS = lldbAPI.a \
|
|||
clangSema.a \
|
||||
clangSerialization.a \
|
||||
LLVMMCDisassembler.a \
|
||||
LLVMObjCARCOpts.a \
|
||||
LLVMProfileData.a \
|
||||
lldbPluginPlatformMacOSX.a \
|
||||
lldbPluginPlatformLinux.a \
|
||||
|
|
|
@ -12,7 +12,7 @@ TOOLNAME = lldb-server
|
|||
|
||||
LLVMLibsOptions += -llldb -llldbUtility
|
||||
|
||||
USEDLIBS := LLVMSupport.a
|
||||
LINK_COMPONENTS := support
|
||||
|
||||
include $(LLDB_LEVEL)/Makefile
|
||||
|
||||
|
|
Loading…
Reference in New Issue