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:
parent
b276d38f8b
commit
d20471507d
2
build.sh
2
build.sh
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user