Skip to content

Commit

Permalink
Configure parallel make recipes
Browse files Browse the repository at this point in the history
GNU make supports running multiple "jobs" or "recipes" simultaneously,
which should speed up the compilation stage.

See: https://www.gnu.org/software/make/manual/html_node/Parallel.html
  • Loading branch information
sgerrand committed Jun 25, 2024
1 parent 2ce76df commit 1033f53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion builder
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ main() {
--libexecdir="$prefix/lib" \
--enable-multi-arch \
--enable-stack-protector=strong
make && make install
make --jobs=4 && make install
tar --dereference --hard-dereference -zcf "/glibc-bin-$version.tar.gz" "$prefix"
} >&2

Expand Down

0 comments on commit 1033f53

Please sign in to comment.