mirror of
https://git.proxmox.com/git/llvm-toolchain
synced 2025-06-14 07:38:00 +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
813 B
Diff
14 lines
813 B
Diff
Index: llvm-toolchain-3.5-3.5~+rc4/lldb/lib/Makefile
|
|
===================================================================
|
|
--- llvm-toolchain-3.5-3.5~+rc4.orig/lldb/lib/Makefile
|
|
+++ llvm-toolchain-3.5-3.5~+rc4/lldb/lib/Makefile
|
|
@@ -175,7 +175,7 @@ ifeq ($(HOST_OS), $(filter $(HOST_OS), L
|
|
LLVMLibsOptions += -Wl,--no-undefined
|
|
# Link in python
|
|
LLVMLibsOptions += $(PYTHON_BUILD_FLAGS) -lrt -ledit -lncurses -lpanel
|
|
- LLVMLibsOptions += -Wl,--soname,lib$(LIBRARYNAME)$(SHLIBEXT).$(SONAME_EXTENSION)
|
|
+ LLVMLibsOptions += -Wl,--soname,lib$(LIBRARYNAME)-$(LLVM_VERSION_MAJOR).$(LLVM_VERSION_MINOR)$(SHLIBEXT).$(SONAME_EXTENSION)
|
|
ifneq (,$(filter $(shell dpkg-architecture -qDEB_HOST_ARCH), mips mipsel powerpc powerpcspe))
|
|
# Link GCC atomic helper library
|
|
LLVMLibsOptions += -latomic
|