remove parallel build param from BaseTools make

tianocore/edk2-platforms recommend not passing any -j option.

Source: 086a3a3ce6 (manual-building)
(BaseTools can currently not be built in parallel, so do not specify any -j option, either on the command line or in a MAKEFLAGS environment variable.)
This commit is contained in:
Vijay 2021-07-19 00:06:14 +05:30 committed by GitHub
parent b276d38f8b
commit d20471507d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -50,7 +50,7 @@ function _build(){
source "${_EDK2}/edksetup.sh"
[ -d "${WORKSPACE}" ]||mkdir "${WORKSPACE}"
set -x
make -C "${_EDK2}/BaseTools" -j "$(nproc)"||exit "$?"
make -C "${_EDK2}/BaseTools"||exit "$?"
if "${GEN_ACPI}" && ! iasl -ve "sdm845Pkg/AcpiTables/${DEVICE}/Dsdt.asl"
then echo "iasl failed with ${?}" >&2;return 1
fi