aboutsummaryrefslogtreecommitdiff
path: root/source/Plugins/JITLoader
diff options
context:
space:
mode:
authorDimitry Andric <dim@FreeBSD.org>2016-01-06 20:12:03 +0000
committerDimitry Andric <dim@FreeBSD.org>2016-01-06 20:12:03 +0000
commit9e6d35490a6542f9c97607f93c2ef8ca8e03cbcc (patch)
treedd2a1ddf0476664c2b823409c36cbccd52662ca7 /source/Plugins/JITLoader
parent3bd2e91faeb9eeec1aae82c64a3253afff551cfd (diff)
downloadsrc-9e6d35490a6542f9c97607f93c2ef8ca8e03cbcc.tar.gz
src-9e6d35490a6542f9c97607f93c2ef8ca8e03cbcc.zip
Vendor import of lldb trunk r256945:vendor/lldb/lldb-trunk-r256945
Notes
Notes: svn path=/vendor/lldb/dist/; revision=293262 svn path=/vendor/lldb/lldb-trunk-r256945/; revision=293263; tag=vendor/lldb/lldb-trunk-r256945
Diffstat (limited to 'source/Plugins/JITLoader')
-rw-r--r--source/Plugins/JITLoader/CMakeLists.txt1
-rw-r--r--source/Plugins/JITLoader/GDB/CMakeLists.txt6
-rw-r--r--source/Plugins/JITLoader/GDB/Makefile14
3 files changed, 21 insertions, 0 deletions
diff --git a/source/Plugins/JITLoader/CMakeLists.txt b/source/Plugins/JITLoader/CMakeLists.txt
new file mode 100644
index 000000000000..e52230199109
--- /dev/null
+++ b/source/Plugins/JITLoader/CMakeLists.txt
@@ -0,0 +1 @@
+add_subdirectory(GDB)
diff --git a/source/Plugins/JITLoader/GDB/CMakeLists.txt b/source/Plugins/JITLoader/GDB/CMakeLists.txt
new file mode 100644
index 000000000000..bcf714dca593
--- /dev/null
+++ b/source/Plugins/JITLoader/GDB/CMakeLists.txt
@@ -0,0 +1,6 @@
+include_directories(.)
+
+add_lldb_library(lldbPluginJITLoaderGDB
+ JITLoaderGDB.cpp
+ )
+
diff --git a/source/Plugins/JITLoader/GDB/Makefile b/source/Plugins/JITLoader/GDB/Makefile
new file mode 100644
index 000000000000..cd5404ffca18
--- /dev/null
+++ b/source/Plugins/JITLoader/GDB/Makefile
@@ -0,0 +1,14 @@
+##===- source/Plugins/JITLoader/GDB/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 := lldbPluginJITLoaderGDB
+BUILD_ARCHIVE = 1
+
+include $(LLDB_LEVEL)/Makefile