Skip to content

Commit 6371758

Browse files
Arm backend: Build executorch with -j$(nproc) (#10547)
This avoids crashes when building on certain systems. Signed-off-by: Adrian Lundell <[email protected]>
1 parent 0165a02 commit 6371758

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backends/arm/scripts/build_executorch.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ cmake \
137137

138138
echo "[$(basename $0)] Configured CMAKE"
139139

140-
cmake --build ${et_build_dir} --parallel --target install --config ${build_type} --
140+
cmake --build ${et_build_dir} -j$(nproc) --target install --config ${build_type} --
141141

142142
set +x
143143

0 commit comments

Comments
 (0)