[Lldb-commits] [lldb] r252429 - autotools: Also link the new go libraries

Sylvestre Ledru via lldb-commits lldb-commits at lists.llvm.org
Sun Nov 8 14:30:34 PST 2015


Author: sylvestre
Date: Sun Nov  8 16:30:34 2015
New Revision: 252429

URL: http://llvm.org/viewvc/llvm-project?rev=252429&view=rev
Log:
autotools: Also link the new go libraries

Modified:
    lldb/trunk/lib/Makefile
    lldb/trunk/source/Plugins/Makefile

Modified: lldb/trunk/lib/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/lib/Makefile?rev=252429&r1=252428&r2=252429&view=diff
==============================================================================
--- lldb/trunk/lib/Makefile (original)
+++ lldb/trunk/lib/Makefile Sun Nov  8 16:30:34 2015
@@ -51,6 +51,7 @@ USEDLIBS = lldbAPI.a \
 	lldbPluginDynamicLoaderMacOSXDYLD.a \
 	lldbPluginDynamicLoaderWindowsDYLD.a \
 	lldbPluginExpressionParserClang.a \
+	lldbPluginExpressionParserGo.a \
 	lldbPluginInstructionARM.a \
 	lldbPluginInstructionARM64.a \
 	lldbPluginInstructionMIPS.a \
@@ -64,6 +65,7 @@ USEDLIBS = lldbAPI.a \
 	lldbPluginLanguageRuntimeGo.a \
 	lldbPluginObjCLanguage.a \
 	lldbPluginObjCPlusPlusLanguage.a \
+	lldbPluginGoLanguage.a \
 	lldbPluginObjectContainerBSDArchive.a \
 	lldbPluginObjectContainerMachOArchive.a \
 	lldbPluginObjectFileELF.a \

Modified: lldb/trunk/source/Plugins/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Makefile?rev=252429&r1=252428&r2=252429&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Makefile (original)
+++ lldb/trunk/source/Plugins/Makefile Sun Nov  8 16:30:34 2015
@@ -35,6 +35,7 @@ PARALLEL_DIRS := ABI/MacOSX-arm ABI/MacO
 	DynamicLoader/Windows-DYLD \
 	JITLoader/GDB \
 	ExpressionParser/Clang \
+	ExpressionParser/Go \
 	OperatingSystem/Go \
 	OperatingSystem/Python \
 	SystemRuntime/MacOSX \




More information about the lldb-commits mailing list