diff --git a/debian/changelog b/debian/changelog index 0d1f3df8..c49c4b98 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,13 +1,26 @@ llvm-toolchain-16 (1:16.0.6-18) UNRELEASED; urgency=medium + [ Gianfranco Costamagna ] * Upload to sid + + [ Sylvestre Ledru ] + * Do not build spirv features on bookworm as the spirv compiler + is too old: + FAILED: spirv-mesa3d-.spv /build/source/libclc/build/spirv-mesa3d-.spv + cd /build/source/libclc/build && /usr/bin/llvm-spirv-15 + --spirv-max-version=1.1 -o spirv-mesa3d-.spv builtins.link.spirv-mesa3d-.bc + Unknown attribute kind (86) (Producer: 'LLVM16.0.6' Reader: 'LLVM 15.0.6') + + [ Steve Langasek ] * Add noble as supported Ubuntu release [ John Paul Adrian Glaubitz ] * Don't run chrpath for libclang on sparc and sparc64 - -- Gianfranco Costamagna Wed, 25 Oct 2023 08:10:35 +0200 + [ Sylvestre Ledru ] + + -- Sylvestre Ledru Sat, 11 Nov 2023 09:57:35 +0100 llvm-toolchain-16 (1:16.0.6-17exp1) experimental; urgency=medium diff --git a/debian/rules b/debian/rules index 9983fc0c..c58bbda6 100755 --- a/debian/rules +++ b/debian/rules @@ -260,7 +260,7 @@ endif ifndef LLVM_SPIRV LLVM_SPIRV_INSTALLED = no else - ifeq ($(shell dpkg --compare-versions $(shell dpkg-query -W -f '$${Version}' llvm-spirv-$(LLVM_SPIRV_VERSION)) gt 14.0.0 ; echo $$?),0) + ifeq ($(shell dpkg --compare-versions $(shell dpkg-query -W -f '$${Version}' llvm-spirv-$(LLVM_SPIRV_VERSION)) gt 15.0.0 ; echo $$?),0) # Too old llvm-spirv version are failing. See #52200 LLVM_SPIRV_INSTALLED = yes else