Skip to content

Commit 9e8a149

Browse files
committed
parallel make breaks newlib install
1 parent c9109d8 commit 9e8a149

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

dkarm-eabi/scripts/build-gcc.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ fi
112112

113113
if [ ! -f installed-newlib ]
114114
then
115-
$MAKE install || { echo "Error installing newlib"; exit 1; }
115+
$MAKE install -j1 || { echo "Error installing newlib"; exit 1; }
116116
touch installed-newlib
117117
fi
118118

dkppc/scripts/build-gcc.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ then
142142
fi
143143
if [ ! -f installed-newlib ]
144144
then
145-
$MAKE install || { echo "Error installing newlib"; exit 1; }
145+
$MAKE install -j1 || { echo "Error installing newlib"; exit 1; }
146146
touch installed-newlib
147147
fi
148148

0 commit comments

Comments
 (0)