[Lldb-commits] [lldb] r207216 - Attempt to fix the build

Dmitri Gribenko gribozavr at gmail.com
Fri Apr 25 02:49:32 PDT 2014


Author: gribozavr
Date: Fri Apr 25 04:49:32 2014
New Revision: 207216

URL: http://llvm.org/viewvc/llvm-project?rev=207216&view=rev
Log:
Attempt to fix the build

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.

Patch by Robert Matusewicz.

Modified:
    lldb/trunk/lib/Makefile

Modified: lldb/trunk/lib/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/lib/Makefile?rev=207216&r1=207215&r2=207216&view=diff
==============================================================================
--- lldb/trunk/lib/Makefile (original)
+++ lldb/trunk/lib/Makefile Fri Apr 25 04:49:32 2014
@@ -71,6 +71,7 @@ USEDLIBS = lldbAPI.a \
 	clangSerialization.a \
 	LLVMMCDisassembler.a \
 	LLVMObjCARCOpts.a \
+	LLVMProfileData.a \
 	lldbPluginPlatformMacOSX.a \
 	lldbPluginPlatformLinux.a \
 	lldbPluginPlatformWindows.a \





More information about the lldb-commits mailing list