mirror of
https://git.proxmox.com/git/llvm-toolchain
synced 2025-07-27 09:50:53 +00:00
add a check that, if we are going to build wasm, wasi-libc is installed on the system
This commit is contained in:
parent
789660216a
commit
363182564f
2
debian/changelog
vendored
2
debian/changelog
vendored
@ -9,6 +9,8 @@ llvm-toolchain-17 (1:17.0.5-2) UNRELEASED; urgency=medium
|
||||
* Add a symlink for libc++experimental.a to /usr/lib/*/libc++experimental.a
|
||||
to fix https://github.com/llvm/llvm-project/issues/72753
|
||||
* try to relax the wasi-libc dep declaration for apt.llvm.org
|
||||
* add a check that, if we are going to build wasm, wasi-libc is installed
|
||||
on the system
|
||||
|
||||
-- Sylvestre Ledru <sylvestre@debian.org> Mon, 20 Nov 2023 19:34:35 +0100
|
||||
|
||||
|
6
debian/rules
vendored
6
debian/rules
vendored
@ -628,6 +628,12 @@ stamps/preconfigure:
|
||||
if test "$(LIBCXX_WASM_ENABLE)" = "no"; then \
|
||||
echo "" > debian/libc++-$(LLVM_VERSION)-dev-wasm32.install; \
|
||||
echo "" > debian/libc++abi-$(LLVM_VERSION)-dev-wasm32.install; \
|
||||
else; \
|
||||
if ! dpkg -l|grep -q wasi-libc; then \
|
||||
echo "Could not find wasi-libc on the system"; \
|
||||
echo "Please check that the package is available on the system"; \
|
||||
exit 1; \
|
||||
fi; \
|
||||
fi
|
||||
|
||||
# Conditionally enable install clangd grpc files
|
||||
|
Loading…
Reference in New Issue
Block a user