fix some parallel executions

This commit is contained in:
Sylvestre Ledru 2022-10-09 15:26:55 +02:00
parent 12a4fecdca
commit f9a9e959de
2 changed files with 3 additions and 3 deletions

2
debian/changelog vendored
View File

@ -1,4 +1,4 @@
llvm-toolchain-15 (1:15.0.2-2~exp3) UNRELEASED; urgency=medium
llvm-toolchain-15 (1:15.0.2-2~exp3) experimental; urgency=medium
* Build using LTO - better performances of the llvm-toolchain
binaires

4
debian/rules vendored
View File

@ -706,7 +706,7 @@ ifeq ($(LLVM_SPIRV_INSTALLED),yes)
-DLLVM_CONFIG=$(STAGE_2_BIN_DIR)/llvm-config \
-DLLVM_SPIRV=/usr/bin/llvm-spirv-$(LLVM_SPIR_VERSION) \
-DLIBCLC_TARGETS_TO_BUILD=$(LIBCLC_TARGETS_TO_BUILD); \
ninja $(NJOBS) $(VERBOSE)
ninja -j $(NJOBS) $(VERBOSE)
else
echo "libclc isn't built LLVM_SPIRV_INSTALLED=$(LLVM_SPIRV_INSTALLED)"
endif
@ -739,7 +739,7 @@ debian-rtlib-wasm-build:
-DCOMPILER_RT_USE_BUILTINS_LIBRARY=ON \
-DCOMPILER_RT_DEFAULT_TARGET_TRIPLE=$$build-unknown-unknown \
-DCOMPILER_RT_OS_DIR=wasi; \
ninja -C build-compiler-rt-$$build $(NJOBS) $(VERBOSE); \
ninja -C build-compiler-rt-$$build -j $(NJOBS) $(VERBOSE); \
done
touch $@