[Lldb-commits] [lldb] r249681 - Fix the undefined symbol issue with go linking with autotools: build the LanguageRuntime for Go + link against it
Sylvestre Ledru via lldb-commits
lldb-commits at lists.llvm.org
Thu Oct 8 04:17:01 PDT 2015
Author: sylvestre
Date: Thu Oct 8 06:17:01 2015
New Revision: 249681
URL: http://llvm.org/viewvc/llvm-project?rev=249681&view=rev
Log:
Fix the undefined symbol issue with go linking with autotools: build the LanguageRuntime for Go + link against it
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=249681&r1=249680&r2=249681&view=diff
==============================================================================
--- lldb/trunk/lib/Makefile (original)
+++ lldb/trunk/lib/Makefile Thu Oct 8 06:17:01 2015
@@ -61,6 +61,7 @@ USEDLIBS = lldbAPI.a \
lldbPluginRenderScriptRuntime.a \
lldbPluginMemoryHistoryASan.a \
lldbPluginCPlusPlusLanguage.a \
+ lldbPluginLanguageRuntimeGo.a \
lldbPluginObjCLanguage.a \
lldbPluginObjCPlusPlusLanguage.a \
lldbPluginObjectContainerBSDArchive.a \
Modified: lldb/trunk/source/Plugins/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Makefile?rev=249681&r1=249680&r2=249681&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Makefile (original)
+++ lldb/trunk/source/Plugins/Makefile Thu Oct 8 06:17:01 2015
@@ -23,6 +23,7 @@ PARALLEL_DIRS := ABI/MacOSX-arm ABI/MacO
UnwindAssembly/InstEmulation UnwindAssembly/x86 \
LanguageRuntime/CPlusPlus/ItaniumABI \
LanguageRuntime/ObjC/AppleObjCRuntime \
+ LanguageRuntime/Go/ \
LanguageRuntime/RenderScript/RenderScriptRuntime \
Language/CPlusPlus \
Language/ObjC \
More information about the lldb-commits
mailing list