d/p/lldb-missing-install.diff: For the install

of lldb-server and lldb-argdumper as they are not always installed
This commit is contained in:
Sylvestre Ledru 2016-12-28 14:33:20 +00:00
parent c7ba2dfdc6
commit d2d447397f
3 changed files with 25 additions and 0 deletions

2
debian/changelog vendored
View File

@ -3,6 +3,8 @@ llvm-toolchain-snapshot (1:4.0~svn288822-1~exp1) experimental; urgency=medium
* New snapshot release
* d/p/kfreebsd-support.diff removed (applied upstream)
* debian/orig-tar.sh: less verbose
* d/p/lldb-missing-install.diff: For the install
of lldb-server and lldb-argdumper as they are not always installed
* Ship new binary in clang-X.Y: clang-import-test
* New symbols in libclang1:
- clang_EvalResult_getAsLongLong

View File

@ -0,0 +1,22 @@
Index: llvm-toolchain-snapshot-4.0~svn290518/lldb/tools/argdumper/CMakeLists.txt
===================================================================
--- llvm-toolchain-snapshot-4.0~svn290518.orig/lldb/tools/argdumper/CMakeLists.txt
+++ llvm-toolchain-snapshot-4.0~svn290518/lldb/tools/argdumper/CMakeLists.txt
@@ -11,3 +11,5 @@ else()
endif()
llvm_config(lldb-argdumper ${LLVM_LINK_COMPONENTS})
+install(TARGETS lldb-argdumper
+ RUNTIME DESTINATION bin)
Index: llvm-toolchain-snapshot-4.0~svn290518/lldb/tools/lldb-server/CMakeLists.txt
===================================================================
--- llvm-toolchain-snapshot-4.0~svn290518.orig/lldb/tools/lldb-server/CMakeLists.txt
+++ llvm-toolchain-snapshot-4.0~svn290518/lldb/tools/lldb-server/CMakeLists.txt
@@ -188,3 +188,7 @@ llvm_config(lldb-server ${LLVM_LINK_COMP
target_link_libraries(lldb-server ${LLDB_SYSTEM_LIBS})
set_target_properties(lldb-server PROPERTIES VERSION ${LLDB_VERSION})
+
+install(TARGETS lldb-server
+ RUNTIME DESTINATION bin)
+

View File

@ -41,3 +41,4 @@ fix-scan-view-path.diff
#0011-SimplifyCFG-Hoisting-invalidates-metadata.patch
clang-fix-cmpxchg8-detection-on-i386.patch
lldb-addversion-suffix-to-llvm-server-exec.patch
lldb-missing-install.diff