From e75ffdc6d546d784f47e23fa6d4b8c1c3aa6d574 Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Wed, 15 Sep 2021 17:24:45 +0100 Subject: [PATCH] do not use parallel make. guaranteed to fail and/or far too heavy a load --- coriolis_install | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/coriolis_install b/coriolis_install index a898a79..c90bee4 100755 --- a/coriolis_install +++ b/coriolis_install @@ -43,7 +43,8 @@ git clone https://github.com/cliffordwolf/yosys.git cd yosys git checkout 049e3abf9baf795e69b9ecb9c4f19de6131f8418 make config-clang -make -j$(nproc) +# WAY too heavy a load - make -j$(nproc) +make cd /home/$SUDO_USER/yosys sudo make install @@ -56,7 +57,8 @@ cd /home/$SUDO_USER/coriolis-2.x/src git clone https://gitlab.lip6.fr/vlsi-eda/coriolis.git cd coriolis git checkout devel -./bootstrap/ccb.py --project=coriolis --make="-j$(nproc) install" +# guaranteed to fail ./bootstrap/ccb.py --project=coriolis --make="-j$(nproc) install" +./bootstrap/ccb.py --project=coriolis --make="-j1 install" # Setup and test coriolisenv /home/$SUDO_USER/coriolis-2.x/src/coriolis/bootstrap/coriolisEnv.py > /home/$SUDO_USER/coriolisenv -- 2.30.2