From af0216f1b87b22580bb652bb7ad5071d57e63ad6 Mon Sep 17 00:00:00 2001 From: Martin Roth Date: Tue, 5 Jan 2016 14:56:13 -0700 Subject: xcompile: Only include arm64 erratum check in arm64 section Clean up the output file a bit by only including the erratum for arm64 into the that architecture section instead of every architecture. Change-Id: Ib6276f12aee5deb92a03e1c4fa2ad57db46bdc8f Signed-off-by: Martin Roth Reviewed-on: https://review.coreboot.org/12842 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi --- util/xcompile/xcompile | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/util/xcompile/xcompile b/util/xcompile/xcompile index be08f740a7..c8cf6e9066 100755 --- a/util/xcompile/xcompile +++ b/util/xcompile/xcompile @@ -227,9 +227,19 @@ endif CPP_${TARCH}:=${GCCPREFIX}cpp AS_${TARCH}:=${GCCPREFIX}as ${ASFLAGS} LD_${TARCH}:=${GCCPREFIX}ld${LINKER_SUFFIX} ${LDFLAGS} +EOF + + if [ "${TARCH}" = "arm64" ]; then + cat <