Also add a missing include in ftfbs-gcc.diff to fix a ftbfs

with gcc 7
This commit is contained in:
Sylvestre Ledru 2017-08-26 18:24:40 +00:00
parent bbe3de4b6a
commit 1f6eee27a5
3 changed files with 15 additions and 0 deletions

2
debian/changelog vendored
View File

@ -1,6 +1,8 @@
llvm-toolchain-4.0 (1:4.0.1-2) unstable; urgency=medium llvm-toolchain-4.0 (1:4.0.1-2) unstable; urgency=medium
* Rebuild with gcc 7 to fix a relocation error (Closes: #866354) * Rebuild with gcc 7 to fix a relocation error (Closes: #866354)
* Also add a missing include in ftfbs-gcc.diff to fix a ftbfs
with gcc 7
* ld.lld manpage wasn't installed * ld.lld manpage wasn't installed
* Link LLDB with -latomic on powerpcspe (Closes: #872267) * Link LLDB with -latomic on powerpcspe (Closes: #872267)
* Disable -gsplit-dwarf when using gcc 7 for causing a linking issue * Disable -gsplit-dwarf when using gcc 7 for causing a linking issue

12
debian/patches/ftfbs-gcc.diff vendored Normal file
View File

@ -0,0 +1,12 @@
Index: llvm-toolchain-4.0-4.0.1~+rc3/lldb/include/lldb/Utility/TaskPool.h
===================================================================
--- llvm-toolchain-4.0-4.0.1~+rc3.orig/lldb/include/lldb/Utility/TaskPool.h
+++ llvm-toolchain-4.0-4.0.1~+rc3/lldb/include/lldb/Utility/TaskPool.h
@@ -33,6 +33,7 @@
#include <queue>
#include <thread>
#include <vector>
+#include <functional>
// Global TaskPool class for running tasks in parallel on a set of worker thread
// created the first

View File

@ -46,3 +46,4 @@ silent-test-failing-codeverage.diff
silent-amdgpu-test-failing.diff silent-amdgpu-test-failing.diff
pthread-link.diff pthread-link.diff
add_symbols_versioning.patch add_symbols_versioning.patch
ftfbs-gcc.diff