From 1d1009e59609950d56189d32df2e0caa368e3f6d Mon Sep 17 00:00:00 2001 From: Aurelien Jarno Date: Tue, 31 Oct 2023 23:35:25 +0100 Subject: [PATCH] Do not limit the parallel links on riscv64 The parallel links has been limited to 2 on riscv64 to support the Ubuntu riscv64 buildds. Now that the number of process is determined depending on the amount of buildd memory, this is no need anymore. --- debian/rules | 1 - 1 file changed, 1 deletion(-) diff --git a/debian/rules b/debian/rules index cb65d3f9..f4aa9ac8 100755 --- a/debian/rules +++ b/debian/rules @@ -210,7 +210,6 @@ endif # debug symbols OOM in Ubuntu Ubuntu and slows down build process. ifneq (,$(filter $(DEB_HOST_ARCH),riscv64)) opt_flags = -O2 -DNDEBUG -g0 - STAGE_ALL_CMAKE_EXTRA += -DLLVM_PARALLEL_LINK_JOBS=2 else opt_flags = -O2 -DNDEBUG -g1 endif