mirror of
https://git.proxmox.com/git/llvm-toolchain
synced 2025-08-12 07:46:16 +00:00
* Fix the path to lldb-server (to lldb-server-3.9) (Closes: #846638)
* Disable libedit usage in lldb because of garbage (Closes: #846616)
This commit is contained in:
commit
2d31f5815c
2
debian/changelog
vendored
2
debian/changelog
vendored
@ -2,6 +2,8 @@ llvm-toolchain-3.9 (1:3.9.1-2) UNRELEASED; urgency=medium
|
|||||||
|
|
||||||
* debian/orig-tar.sh: less verbose
|
* debian/orig-tar.sh: less verbose
|
||||||
* Remove the info section from the generated manpages (Closes: #846269)
|
* Remove the info section from the generated manpages (Closes: #846269)
|
||||||
|
* Fix the path to lldb-server (to lldb-server-3.9) (Closes: #846638)
|
||||||
|
* Disable libedit usage in lldb because of garbage (Closes: #846616)
|
||||||
|
|
||||||
-- Sylvestre Ledru <sylvestre@debian.org> Sat, 17 Dec 2016 17:55:44 +0100
|
-- Sylvestre Ledru <sylvestre@debian.org> Sat, 17 Dec 2016 17:55:44 +0100
|
||||||
|
|
||||||
|
13
debian/patches/lldb-server-path.diff
vendored
Normal file
13
debian/patches/lldb-server-path.diff
vendored
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
Index: llvm-toolchain-3.8-3.8.1/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp
|
||||||
|
===================================================================
|
||||||
|
--- llvm-toolchain-3.8-3.8.1.orig/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp
|
||||||
|
+++ llvm-toolchain-3.8-3.8.1/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp
|
||||||
|
@@ -40,7 +40,7 @@
|
||||||
|
#if defined(__APPLE__)
|
||||||
|
# define DEBUGSERVER_BASENAME "debugserver"
|
||||||
|
#else
|
||||||
|
-# define DEBUGSERVER_BASENAME "lldb-server"
|
||||||
|
+# define DEBUGSERVER_BASENAME "lldb-server-3.9"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined (HAVE_LIBCOMPRESSION)
|
2
debian/patches/series
vendored
2
debian/patches/series
vendored
@ -43,3 +43,5 @@ upstream-msan-prevent-initialization-failure.diff
|
|||||||
upstream-asan-msan-fix-reallocation-logic.diff
|
upstream-asan-msan-fix-reallocation-logic.diff
|
||||||
lit-force-lang.diff
|
lit-force-lang.diff
|
||||||
clang-arm-default-vfp3-on-armv7a.patch
|
clang-arm-default-vfp3-on-armv7a.patch
|
||||||
|
clang-arm-default-vfp3-on-armv7a.patch
|
||||||
|
lldb-server-path.diff
|
||||||
|
11
debian/rules
vendored
11
debian/rules
vendored
@ -119,7 +119,10 @@ LLDB_DISABLE_ARCHS := hurd-i386 ia64 ppc64el powerpc s390x sparc64 mips64el ppc6
|
|||||||
# hurd has threading issues
|
# hurd has threading issues
|
||||||
ifeq (,$(filter-out $(LLDB_DISABLE_ARCHS), $(DEB_HOST_ARCH)))
|
ifeq (,$(filter-out $(LLDB_DISABLE_ARCHS), $(DEB_HOST_ARCH)))
|
||||||
# Disable LLDB for this arch.
|
# Disable LLDB for this arch.
|
||||||
LLDB_ENABLE=no
|
LLDB_ENABLE=no
|
||||||
|
else
|
||||||
|
# See https://llvm.org/bugs/show_bug.cgi?id=28898
|
||||||
|
CMAKE_EXTRA += -DLLDB_DISABLE_LIBEDIT=ON
|
||||||
endif
|
endif
|
||||||
|
|
||||||
LLD_ENABLE=NO
|
LLD_ENABLE=NO
|
||||||
@ -270,13 +273,13 @@ build_doc:
|
|||||||
cd $$d && rm -f underscore.js && ln -s /usr/share/javascript/underscore/underscore.js && cd -; \
|
cd $$d && rm -f underscore.js && ln -s /usr/share/javascript/underscore/underscore.js && cd -; \
|
||||||
done
|
done
|
||||||
|
|
||||||
help2man --version-string=$(LLVM_VERSION) --no-discard-stderr clang/tools/scan-view/bin/scan-view > debian/man/scan-view-$(LLVM_VERSION).1
|
help2man --version-string=$(LLVM_VERSION) --no-info --no-discard-stderr clang/tools/scan-view/bin/scan-view > debian/man/scan-view-$(LLVM_VERSION).1
|
||||||
help2man --version-string=$(LLVM_VERSION) --no-discard-stderr clang/tools/clang-format/clang-format-diff.py > debian/man/clang-format-diff-$(LLVM_VERSION).1
|
help2man --version-string=$(LLVM_VERSION) --no-info --no-discard-stderr clang/tools/clang-format/clang-format-diff.py > debian/man/clang-format-diff-$(LLVM_VERSION).1
|
||||||
|
|
||||||
CMDS="llvm-dwarfdump llvm-mc llvm-mcmarkup llvm-objdump llvm-rtdyld llvm-size llvm-ranlib lldb lldb-mi clang-format clang clang-tblgen clang-check clang-tidy clang-apply-replacements clang-rename clang-query pp-trace sancov lli modularize clang-include-fixer find-all-symbols"; \
|
CMDS="llvm-dwarfdump llvm-mc llvm-mcmarkup llvm-objdump llvm-rtdyld llvm-size llvm-ranlib lldb lldb-mi clang-format clang clang-tblgen clang-check clang-tidy clang-apply-replacements clang-rename clang-query pp-trace sancov lli modularize clang-include-fixer find-all-symbols"; \
|
||||||
for f in $$CMDS; do \
|
for f in $$CMDS; do \
|
||||||
echo "Generating manpage of $$f"; \
|
echo "Generating manpage of $$f"; \
|
||||||
LD_LIBRARY_PATH=$(DEB_INST)/usr/lib/llvm-$(LLVM_VERSION)/lib/:/usr/lib/*/libfakeroot help2man --version-string=$(LLVM_VERSION) --no-discard-stderr $(TARGET_BUILD)/bin/$$f > debian/man/$$f-$(LLVM_VERSION).1; \
|
LD_LIBRARY_PATH=$(DEB_INST)/usr/lib/llvm-$(LLVM_VERSION)/lib/:/usr/lib/*/libfakeroot help2man --no-info --version-string=$(LLVM_VERSION) --no-discard-stderr $(TARGET_BUILD)/bin/$$f > debian/man/$$f-$(LLVM_VERSION).1; \
|
||||||
done
|
done
|
||||||
|
|
||||||
override_dh_auto_install:
|
override_dh_auto_install:
|
||||||
|
Loading…
Reference in New Issue
Block a user