aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWilliam Harrington <kb0iic@berzerkula.org>2021-04-21 18:24:31 -0500
committerWilliam Harrington <kb0iic@berzerkula.org>2021-04-21 18:28:37 -0500
commit62dc3672d05f0bc00c3e7157be3d318837aa7cab (patch)
tree4a09e63241f80d9b606943302b3a4569c852bb1c
parent30d10c705a8ec0c4ba0a3c0f9d7277029b4be090 (diff)
Don't hard code jobs for arm. Just back one off when building for arm by setting MAKEFLAGS and NINJAJOBS in env.sh.
-rw-r--r--chapter8/binutils.sh3
1 files changed, 1 insertions, 2 deletions
diff --git a/chapter8/binutils.sh b/chapter8/binutils.sh
index 43bf03b..b5c5732 100644
--- a/chapter8/binutils.sh
+++ b/chapter8/binutils.sh
@@ -17,8 +17,7 @@ cd build || exit 1
--enable-64-bit-bfd \
--with-system-zlib &&
-make tooldir=/usr \
- "$([ "$(uname -m)" = aarch64 ] && echo -j5)" &&
+make tooldir=/usr &&
make tooldir=/usr -j1 install &&