also ignore libc++experimental.a on dh_strip (fails on stretch)

This commit is contained in:
Sylvestre Ledru 2018-08-24 15:41:57 +02:00
parent af42e860c3
commit f2d5bf8c09
2 changed files with 2 additions and 1 deletions

1
debian/changelog vendored
View File

@ -1,6 +1,7 @@
llvm-toolchain-7 (1:7~+rc1-1~exp4) UNRELEASED; urgency=medium llvm-toolchain-7 (1:7~+rc1-1~exp4) UNRELEASED; urgency=medium
* Force sphinx to be >> 1.2.3 * Force sphinx to be >> 1.2.3
* also ignore libc++experimental.a on dh_strip (fails on stretch)
[ John Paul Adrian Glaubitz ] [ John Paul Adrian Glaubitz ]
* Don't build with ld.gold on powerpcspe * Don't build with ld.gold on powerpcspe

2
debian/rules vendored
View File

@ -609,7 +609,7 @@ endif
# endif # endif
ifeq ($(shell dpkg --compare-versions $(shell dpkg-query -W -f '$${Version}' binutils) ge 2.28 ; echo $$?),0) ifeq ($(shell dpkg --compare-versions $(shell dpkg-query -W -f '$${Version}' binutils) ge 2.28 ; echo $$?),0)
# strip segfaults on libFuzzer.a # strip segfaults on libFuzzer.a
dh_strip -a -v -XlibFuzzer.a -Xlibc++.a -Xlibc++abi.a dh_strip -a -v -XlibFuzzer.a -Xlibc++.a -Xlibc++abi.a -Xlibc++experimental.a
else else
dh_strip -a -v dh_strip -a -v
endif endif