Martin Roth has submitted this change. ( https://review.coreboot.org/c/coreboot/+/36337 )
Change subject: buildgcc: ACPICA: build more utilities and in parallel ......................................................................
buildgcc: ACPICA: build more utilities and in parallel
- honor $JOBS in build_IASL
- Build the following utilities in addition to iasl for easier debugging of ACPI issues:
* acpibin * acpidump * acpiexec * acpihelp * acpinames * acpisrc * acpixtract
Change-Id: I84476da8f9a5ba4860ba4ad0220ec3efb229cc03 Signed-off-by: Stefan Reinauer stefan.reinauer@coreboot.org Reviewed-on: https://review.coreboot.org/c/coreboot/+/36337 Reviewed-by: HAOUAS Elyes ehaouas@noos.fr Tested-by: build bot (Jenkins) no-reply@coreboot.org --- M util/crossgcc/buildgcc 1 file changed, 3 insertions(+), 3 deletions(-)
Approvals: build bot (Jenkins): Verified HAOUAS Elyes: Looks good to me, approved
diff --git a/util/crossgcc/buildgcc b/util/crossgcc/buildgcc index 6c378ac..b75b90a 100755 --- a/util/crossgcc/buildgcc +++ b/util/crossgcc/buildgcc @@ -861,9 +861,9 @@ test "$UNAME" = "Cygwin" && HOST="_CYGWIN" HOST="$HOST" CFLAGS="$CFLAGS" \ OPT_CFLAGS="-O -D_FORTIFY_SOURCE=2 -D COREBOOT_TOOLCHAIN_VERSION='"coreboot toolchain v$CROSSGCC_VERSION $CROSSGCC_DATE"' " \ - $MAKE CC="$(hostcc host)" iasl || touch "$RDIR/.failed" - rm -f "$DESTDIR$TARGETDIR/bin/iasl" || touch "$RDIR/.failed" - cp bin/iasl "$DESTDIR$TARGETDIR/bin" || touch "$RDIR/.failed" + $MAKE $JOBS CC="$(hostcc host)" iasl acpibin acpidump acpiexec acpihelp acpinames acpisrc acpixtract + rm -f "$DESTDIR$TARGETDIR/bin/{iasl,acpibin,acpidump,acpiexec,acpihelp,acpinames,acpisrc,acpixtract}" || touch "$RDIR/.failed" + cp bin/{iasl,acpibin,acpidump,acpiexec,acpihelp,acpinames,acpisrc,acpixtract} "$DESTDIR$TARGETDIR/bin" || touch "$RDIR/.failed" }
build_LLVM() {