wasm: fail early

This commit is contained in:
Sylvestre Ledru 2022-10-10 18:54:50 +02:00
parent b241afb285
commit bce4eded80

4
debian/rules vendored
View File

@ -745,8 +745,8 @@ ifeq (${COMPILER_RT_WASM_ENABLE},yes)
-DCOMPILER_RT_USE_LIBCXX=OFF \ -DCOMPILER_RT_USE_LIBCXX=OFF \
-DCOMPILER_RT_USE_BUILTINS_LIBRARY=ON \ -DCOMPILER_RT_USE_BUILTINS_LIBRARY=ON \
-DCOMPILER_RT_DEFAULT_TARGET_TRIPLE=$$build-unknown-unknown \ -DCOMPILER_RT_DEFAULT_TARGET_TRIPLE=$$build-unknown-unknown \
-DCOMPILER_RT_OS_DIR=wasi; \ -DCOMPILER_RT_OS_DIR=wasi || exit 1; \
ninja -C build-compiler-rt-$$build -j $(NJOBS) $(VERBOSE); \ ninja -C build-compiler-rt-$$build -j $(NJOBS) $(VERBOSE) || exit 1; \
done done
else else
echo "Skip on this arch" echo "Skip on this arch"