build: Add -j to make install to speed compilation

This commit is contained in:
Guy Shimko 2025-04-02 00:07:26 +03:00
parent e899d51568
commit ecd1367c6d

View File

@ -497,7 +497,7 @@ function install_gdb() {
mkdir -p "$artifacts_location"
make -C "$gdb_build_dir" install "DESTDIR=$temp_artifacts_dir" 1>&2
make -j$(nproc) -C "$gdb_build_dir" install "DESTDIR=$temp_artifacts_dir" 1>&2
if [[ $? -ne 0 ]]; then
rm -rf "$temp_artifacts_dir"
return 1