[Lldb-commits] [lldb] r244039 - Bug 24332 - Fix the build of lldb under GNU/Linux when using autotools

Sylvestre Ledru sylvestre at debian.org
Wed Aug 5 05:46:53 PDT 2015


Author: sylvestre
Date: Wed Aug  5 07:46:53 2015
New Revision: 244039

URL: http://llvm.org/viewvc/llvm-project?rev=244039&view=rev
Log:
Bug 24332 - Fix the build of lldb under GNU/Linux when using autotools

Reviewers: loladiro, jingham, emaste, zturner, brucem

Subscribers: tberghammer, danalbert, srhines, zturner, lldb-commits

Differential Revision: http://reviews.llvm.org/D11717

Added:
    lldb/trunk/source/Plugins/ScriptInterpreter/None/Makefile
    lldb/trunk/source/Plugins/ScriptInterpreter/Python/Makefile
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=244039&r1=244038&r2=244039&view=diff
==============================================================================
--- lldb/trunk/lib/Makefile (original)
+++ lldb/trunk/lib/Makefile Wed Aug  5 07:46:53 2015
@@ -96,7 +96,9 @@ USEDLIBS = lldbAPI.a \
 	lldbPluginPlatformFreeBSD.a \
 	lldbPluginPlatformPOSIX.a \
 	lldbPluginPlatformKalimba.a \
-	lldbPluginPlatformAndroid.a
+	lldbPluginPlatformAndroid.a \
+	lldbPluginScriptInterpreterNone.a \
+	lldbPluginScriptInterpreterPython.a
 
 # Because GCC requires RTTI enabled for lldbCore (see source/Core/Makefile) it is
 # necessary to also link the clang rewriter libraries so vtable references can

Modified: lldb/trunk/source/Plugins/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Makefile?rev=244039&r1=244038&r2=244039&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Makefile (original)
+++ lldb/trunk/source/Plugins/Makefile Wed Aug  5 07:46:53 2015
@@ -32,7 +32,8 @@ PARALLEL_DIRS := ABI/MacOSX-arm ABI/MacO
 	SystemRuntime/MacOSX \
 	SymbolVendor/ELF \
 	MemoryHistory/asan \
-	InstrumentationRuntime/AddressSanitizer
+	InstrumentationRuntime/AddressSanitizer \
+	ScriptInterpreter/Python ScriptInterpreter/None
 
 ifeq ($(HOST_OS),Darwin)
 PARALLEL_DIRS += Process/MacOSX-Kernel

Added: lldb/trunk/source/Plugins/ScriptInterpreter/None/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/ScriptInterpreter/None/Makefile?rev=244039&view=auto
==============================================================================
--- lldb/trunk/source/Plugins/ScriptInterpreter/None/Makefile (added)
+++ lldb/trunk/source/Plugins/ScriptInterpreter/None/Makefile Wed Aug  5 07:46:53 2015
@@ -0,0 +1,14 @@
+##===- source/Plugins/ScriptInterpreter/None/Makefile ------------*- Makefile -*-===##
+# 
+#                     The LLVM Compiler Infrastructure
+#
+# This file is distributed under the University of Illinois Open Source
+# License. See LICENSE.TXT for details.
+# 
+##===----------------------------------------------------------------------===##
+
+LLDB_LEVEL := ../../../..
+LIBRARYNAME := lldbPluginScriptInterpreterNone
+BUILD_ARCHIVE = 1
+
+include $(LLDB_LEVEL)/Makefile

Added: lldb/trunk/source/Plugins/ScriptInterpreter/Python/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/ScriptInterpreter/Python/Makefile?rev=244039&view=auto
==============================================================================
--- lldb/trunk/source/Plugins/ScriptInterpreter/Python/Makefile (added)
+++ lldb/trunk/source/Plugins/ScriptInterpreter/Python/Makefile Wed Aug  5 07:46:53 2015
@@ -0,0 +1,14 @@
+##===- source/Plugins/ScriptInterpreter/Python/Makefile ------------*- Makefile -*-===##
+# 
+#                     The LLVM Compiler Infrastructure
+#
+# This file is distributed under the University of Illinois Open Source
+# License. See LICENSE.TXT for details.
+# 
+##===----------------------------------------------------------------------===##
+
+LLDB_LEVEL := ../../../..
+LIBRARYNAME := lldbPluginScriptInterpreterPython
+BUILD_ARCHIVE = 1
+
+include $(LLDB_LEVEL)/Makefile




More information about the lldb-commits mailing list