Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit cbf46fb

Browse files
committed
Merge pull request #15 from xyziemba/master
Parallelize Linux build by adding "-j `nproc`" to make
2 parents 3fbe456 + bb283b8 commit cbf46fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ build_coreclr()
8181
# Build CoreCLR
8282

8383
echo Executing make $__UnprocessedBuildArgs
84-
make $__UnprocessedBuildArgs
84+
make -j `nproc` $__UnprocessedBuildArgs
8585
if [ $? != 0 ]; then
8686
echo Failed to build coreclr components.
8787
exit 1

0 commit comments

Comments
 (0)