diff options
Diffstat (limited to '')
-rw-r--r-- | debian/changelog | 6 | ||||
-rw-r--r-- | debian/control | 2 | ||||
-rwxr-xr-x | debian/rules | 6 |
3 files changed, 10 insertions, 4 deletions
diff --git a/debian/changelog b/debian/changelog index 9005a06..5d71d11 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +wasi-libc (0.0~git20230113.4362b18-3) unstable; urgency=medium + + * switch to LLVM 16 (Closes: #1061217) + + -- Fabian Grünbichler <debian@fabian.gruenbichler.email> Thu, 25 Jan 2024 21:48:31 +0100 + wasi-libc (0.0~git20230113.4362b18-2) unstable; urgency=medium * Revert "build: enable stack protection" (Closes: #1051815) diff --git a/debian/control b/debian/control index c83931a..d386211 100644 --- a/debian/control +++ b/debian/control @@ -5,7 +5,7 @@ Maintainer: Debian Rust Maintainers <pkg-rust-maintainers@alioth-lists.debian.ne Uploaders: Ximin Luo <infinity0@debian.org>, Fabian Grünbichler <debian@fabian.gruenbichler.email> -Build-Depends: debhelper-compat (= 13), clang-14, llvm-14 +Build-Depends: debhelper-compat (= 13), clang-16, llvm-16 Standards-Version: 4.6.2 Homepage: https://github.com/CraneStation/wasi-libc Vcs-Browser: https://salsa.debian.org/rust-team/wasi-libc diff --git a/debian/rules b/debian/rules index 081101b..4a62a41 100755 --- a/debian/rules +++ b/debian/rules @@ -5,9 +5,9 @@ include /usr/share/dpkg/buildflags.mk -export NM = llvm-nm-14 -export AR = llvm-ar-14 -export CC = clang-14 +export NM = llvm-nm-16 +export AR = llvm-ar-16 +export CC = clang-16 # stack protector not yet supported, see # https://github.com/CraneStation/wasi-libc/issues/157 |