mirror of
https://git.proxmox.com/git/llvm-toolchain
synced 2025-06-15 05:29:45 +00:00

* Running tests respect DEB_BUILD_OPTIONS=parallel=X (Closes: #751943) * Fix FTBFS on powerpc and powerpcspe (Closes: #733890) * Broken library symlink fixed in lldb-3.5 (Closes: #715130) * Fix --use-cc when no absolute path is provided (Closes: #748777)
14 lines
671 B
Diff
14 lines
671 B
Diff
Index: llvm-toolchain-snapshot_3.5~svn199197/tools/llvm-shlib/Makefile
|
|
===================================================================
|
|
--- llvm-toolchain-3.4_3.4~svn209031.orig/tools/llvm-shlib/Makefile
|
|
+++ llvm-toolchain-3.4_3.4~svn209031/tools/llvm-shlib/Makefile
|
|
@@ -78,7 +78,7 @@ endif
|
|
|
|
ifeq ($(HOST_OS), $(filter $(HOST_OS), DragonFly Linux FreeBSD GNU/kFreeBSD GNU))
|
|
# Add soname to the library.
|
|
- LLVMLibsOptions += -Wl,--soname,lib$(LIBRARYNAME)$(SHLIBEXT) -Wl,-Bsymbolic-functions
|
|
+ LLVMLibsOptions += -Wl,--soname,lib$(LIBRARYNAME)$(SHLIBEXT).1 -Wl,-Bsymbolic-functions
|
|
endif
|
|
|
|
ifeq ($(HOST_OS), $(filter $(HOST_OS), Linux GNU GNU/kFreeBSD))
|