Update ubuntu-req.sh (#645)

Use more cores when we can, and fewer when we can't use more
This commit is contained in:
Jacob Gadikian
2020-08-19 01:49:15 +07:00
committed by GitHub
parent b3fe2cae24
commit aca96a7f4d

View File

@@ -24,4 +24,4 @@ sudo apt-get install -y device-tree-compiler
git clone http://git.veripool.org/git/verilator
cd verilator
git checkout v4.034
autoconf && ./configure && make -j16 && sudo make install
autoconf && ./configure && make -j$(nproc) && sudo make install