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.
This commit is contained in:
Aurelien Jarno 2023-10-31 23:35:25 +01:00
parent f0fcfca366
commit 1d1009e596

1
debian/rules vendored
View File

@ -210,7 +210,6 @@ endif
# debug symbols OOM in Ubuntu Ubuntu and slows down build process. # debug symbols OOM in Ubuntu Ubuntu and slows down build process.
ifneq (,$(filter $(DEB_HOST_ARCH),riscv64)) ifneq (,$(filter $(DEB_HOST_ARCH),riscv64))
opt_flags = -O2 -DNDEBUG -g0 opt_flags = -O2 -DNDEBUG -g0
STAGE_ALL_CMAKE_EXTRA += -DLLVM_PARALLEL_LINK_JOBS=2
else else
opt_flags = -O2 -DNDEBUG -g1 opt_flags = -O2 -DNDEBUG -g1
endif endif