mirror of
https://git.proxmox.com/git/llvm-toolchain
synced 2025-08-07 02:30:25 +00:00
Merge branch 'snapshot' of salsa.debian.org:pkg-llvm-team/llvm-toolchain into snapshot
This commit is contained in:
commit
4a665f949a
5
debian/qualify-clang.sh
vendored
5
debian/qualify-clang.sh
vendored
@ -725,7 +725,10 @@ lldb-$VERSION -s lldb-cmd.txt ./foo &> foo.log
|
|||||||
if ! grep -q "stop reason = step over" foo.log; then
|
if ! grep -q "stop reason = step over" foo.log; then
|
||||||
echo "Could not find the lldb expected output"
|
echo "Could not find the lldb expected output"
|
||||||
cat foo.log
|
cat foo.log
|
||||||
exit 42
|
# do not fail on i386, never worked here
|
||||||
|
if [ $DEB_HOST_ARCH != "i386" ]; then
|
||||||
|
exit 42
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if test ! -f /usr/lib/llvm-$VERSION/lib/libclangToolingInclusions.a; then
|
if test ! -f /usr/lib/llvm-$VERSION/lib/libclangToolingInclusions.a; then
|
||||||
|
2
debian/rules
vendored
2
debian/rules
vendored
@ -239,7 +239,7 @@ OLD_DH_DISTRO := trusty
|
|||||||
ifneq (,$(filter $(DISTRO),$(OLD_DH_DISTRO)))
|
ifneq (,$(filter $(DISTRO),$(OLD_DH_DISTRO)))
|
||||||
# DH doesn't support the [power ...] in install
|
# DH doesn't support the [power ...] in install
|
||||||
# fails with cp: cannot stat 'debian/tmp/[!powerpc': No such file or directory
|
# fails with cp: cannot stat 'debian/tmp/[!powerpc': No such file or directory
|
||||||
$(shell sed -e "s|\[\!powerpc \!powerpcspe\] ||g" llvm-$(LLVM_VERSION)-dev.install)
|
$(shell sed -e "s|\[\!powerpc \!powerpcspe\] ||g" debian/llvm-X.Y-dev.install.in)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
DH_OPTIONS=
|
DH_OPTIONS=
|
||||||
|
Loading…
Reference in New Issue
Block a user