aboutsummaryrefslogtreecommitdiff
path: root/build.common
diff options
context:
space:
mode:
authorPalmer Dabbelt <palmer.dabbelt@eecs.berkeley.edu>2016-06-29 15:38:29 -0700
committerPalmer Dabbelt <palmer.dabbelt@eecs.berkeley.edu>2016-06-29 15:38:29 -0700
commitd1bd1b165f880c277aaa93ee59133237895b31fc (patch)
treec08fa0c062cfb412ce574352d656c456d77c7a9a /build.common
parentca6df6287258145915065eba76618e832a4fb708 (diff)
downloadriscv-tools-d1bd1b165f880c277aaa93ee59133237895b31fc.zip
riscv-tools-d1bd1b165f880c277aaa93ee59133237895b31fc.tar.gz
riscv-tools-d1bd1b165f880c277aaa93ee59133237895b31fc.tar.bz2
Stop using "JOBS" and use "MAKEFLAGS" instead
Diffstat (limited to 'build.common')
-rw-r--r--build.common6
1 files changed, 2 insertions, 4 deletions
diff --git a/build.common b/build.common
index 7a7e797..3b6a1c4 100644
--- a/build.common
+++ b/build.common
@@ -1,8 +1,6 @@
# Script to build RISC-V ISA simulator, proxy kernel, and GNU toolchain.
# Tools will be installed to $RISCV.
-JOBS=16
-
if [ "x$RISCV" = "x" ]
then
echo "Please set the RISCV environment variable to your preferred install path."
@@ -31,8 +29,8 @@ function build_project {
echo "Configuring project $PROJECT"
../configure $* > build.log
echo "Building project $PROJECT"
- $MAKE -j$JOBS >> build.log
+ $MAKE >> build.log
echo "Installing project $PROJECT"
- $MAKE -j$JOBS install >> build.log
+ $MAKE install >> build.log
cd - > /dev/null
}