Hi emaste,

It looks like on 18th April clang added dependency from clangCodeGen.a to 
LLVMProfileData.a and since then lldb have problem with linking to 
clangCodeGen.a due to missing symbols.

This adds LLVMProfileData.a to USEDLIBS to fix that problem.

http://reviews.llvm.org/D3488

Files:
  lib/Makefile

Index: lib/Makefile
===================================================================
--- lib/Makefile
+++ lib/Makefile
@@ -71,6 +71,7 @@
        clangSerialization.a \
        LLVMMCDisassembler.a \
        LLVMObjCARCOpts.a \
+       LLVMProfileData.a \
        lldbPluginPlatformMacOSX.a \
        lldbPluginPlatformLinux.a \
        lldbPluginPlatformWindows.a \
Index: lib/Makefile
===================================================================
--- lib/Makefile
+++ lib/Makefile
@@ -71,6 +71,7 @@
 	clangSerialization.a \
 	LLVMMCDisassembler.a \
 	LLVMObjCARCOpts.a \
+	LLVMProfileData.a \
 	lldbPluginPlatformMacOSX.a \
 	lldbPluginPlatformLinux.a \
 	lldbPluginPlatformWindows.a \
_______________________________________________
lldb-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/lldb-commits

Reply via email to