mirror of
https://git.proxmox.com/git/llvm-toolchain
synced 2025-07-26 08:59:46 +00:00

* libclang-3.5.so should be used instead libclang.so. Update the soname to match the new lib name (Closes: #759538) * Rename liblldb.so to liblldb-3.5.so + update of the soname. * python-clang-3.5 description updated * liblldb-3.5 and python-lldb-3.5 added * lldb-3.5-dev renamed to liblldb-3.5-dev to match the previous changes * Manpages for llvm-ranlib, clang-apply-replacements, pp-trace and clang-tidy added * clang-3.5 should depends on binutils (for ld, at least) (Closes: #751030) * Try to bring back lldb-3.4-dev on mips & mipsel (Closes: #758314) * Upload in unstable * Try to bring back lldb on mips & mipsel * Force scan-build to use the same version of clang * Try to fix hurd (hurd-EIEIO-undef.diff)
14 lines
658 B
Diff
14 lines
658 B
Diff
Index: llvm-toolchain-snapshot_3.5~svn199197/clang/tools/scan-build/scan-build
|
|
===================================================================
|
|
--- llvm-toolchain-snapshot_3.5~svn199197.orig/clang/tools/scan-build/scan-build 2014-01-14 11:30:50.852868672 +0100
|
|
+++ llvm-toolchain-snapshot_3.5~svn199197/clang/tools/scan-build/scan-build 2014-01-14 11:30:50.848868672 +0100
|
|
@@ -1559,7 +1559,7 @@
|
|
|
|
# Find 'clang'
|
|
if (!defined $AnalyzerDiscoveryMethod) {
|
|
- $Clang = Cwd::realpath("$RealBin/bin/clang");
|
|
+ $Clang = Cwd::realpath("/usr/lib/llvm-3.5/bin/clang");
|
|
if (!defined $Clang || ! -x $Clang) {
|
|
$Clang = Cwd::realpath("$RealBin/clang");
|
|
}
|