mirror of
https://git.proxmox.com/git/llvm-toolchain
synced 2025-08-16 02:34:19 +00:00
Add missing runtime dependency and add fix for lldb -P usage
This commit is contained in:
parent
113395c623
commit
1957569981
7
debian/changelog
vendored
7
debian/changelog
vendored
@ -1,3 +1,10 @@
|
|||||||
|
llvm-toolchain-9 (1:9.0.1-7) UNRELEASED; urgency=medium
|
||||||
|
|
||||||
|
* Add dependency on libclang-cpp-9 from llvm-9-dev (Closes: #946761)
|
||||||
|
* fix lldb-9 -P path print (Closes: #945445)
|
||||||
|
|
||||||
|
-- Gianfranco Costamagna <locutusofborg@debian.org> Tue, 21 Jan 2020 13:05:06 +0100
|
||||||
|
|
||||||
llvm-toolchain-9 (1:9.0.1-6) unstable; urgency=medium
|
llvm-toolchain-9 (1:9.0.1-6) unstable; urgency=medium
|
||||||
|
|
||||||
* Team upload.
|
* Team upload.
|
||||||
|
2
debian/control
vendored
2
debian/control
vendored
@ -327,7 +327,7 @@ Package: llvm-9-dev
|
|||||||
Architecture: any
|
Architecture: any
|
||||||
Depends: ${shlibs:Depends}, libffi-dev (>= 3.0.9), ${misc:Depends},
|
Depends: ${shlibs:Depends}, libffi-dev (>= 3.0.9), ${misc:Depends},
|
||||||
llvm-9 (= ${binary:Version}), libllvm9 (= ${binary:Version}), libtinfo-dev,
|
llvm-9 (= ${binary:Version}), libllvm9 (= ${binary:Version}), libtinfo-dev,
|
||||||
llvm-9-tools (= ${binary:Version}), libz3-dev
|
llvm-9-tools (= ${binary:Version}), libclang-cpp9 (= ${binary:Version}), libz3-dev
|
||||||
Description: Modular compiler and toolchain technologies, libraries and headers
|
Description: Modular compiler and toolchain technologies, libraries and headers
|
||||||
LLVM is a collection of libraries and tools that make it easy to build
|
LLVM is a collection of libraries and tools that make it easy to build
|
||||||
compilers, optimizers, just-in-time code generators, and many other
|
compilers, optimizers, just-in-time code generators, and many other
|
||||||
|
18
debian/patches/print-lldb-path.patch
vendored
Normal file
18
debian/patches/print-lldb-path.patch
vendored
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
Author: Gianfranco Costamagna <locutusofborg@debian.org>
|
||||||
|
Last-Update: 2020-01-21
|
||||||
|
|
||||||
|
Index: llvm-toolchain-9-9.0.1/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp
|
||||||
|
===================================================================
|
||||||
|
--- llvm-toolchain-9-9.0.1.orig/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp
|
||||||
|
+++ llvm-toolchain-9-9.0.1/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp
|
||||||
|
@@ -337,8 +337,8 @@
|
||||||
|
llvm::sys::path::append(path, style, LLDB_PYTHON_RELATIVE_LIBDIR);
|
||||||
|
#else
|
||||||
|
llvm::sys::path::append(path, style,
|
||||||
|
- "python" + llvm::Twine(PY_MAJOR_VERSION) + "." +
|
||||||
|
- llvm::Twine(PY_MINOR_VERSION),
|
||||||
|
+ "python" /*+ llvm::Twine(PY_MAJOR_VERSION)*/ + "3" +
|
||||||
|
+ /*llvm::Twine(PY_MINOR_VERSION)*/,
|
||||||
|
"site-packages");
|
||||||
|
#endif
|
||||||
|
}
|
1
debian/patches/series
vendored
1
debian/patches/series
vendored
@ -140,3 +140,4 @@ no-z3.patch
|
|||||||
# bug #946874
|
# bug #946874
|
||||||
D71028-mips-rust-test.diff
|
D71028-mips-rust-test.diff
|
||||||
python3-shebang.patch
|
python3-shebang.patch
|
||||||
|
print-lldb-path.patch
|
||||||
|
Loading…
Reference in New Issue
Block a user