From ee1641f066b68eb6dd008728ae8f791eba795dcd Mon Sep 17 00:00:00 2001 From: Arthur Heymans Date: Wed, 23 Mar 2022 22:28:16 +0100 Subject: [PATCH] soc/amd/pi: Use -Wno-pragma-pack Agesa headers extensively use and override pragma pack which fails to compile with clang. Change-Id: Ib234be536388f41d63c2d26cac4c35881af25930 Signed-off-by: Arthur Heymans Reviewed-on: https://review.coreboot.org/c/coreboot/+/63054 Tested-by: build bot (Jenkins) Reviewed-by: Raul Rangel --- src/soc/amd/common/pi/Makefile.inc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/soc/amd/common/pi/Makefile.inc b/src/soc/amd/common/pi/Makefile.inc index 55fbd95cc8..8646b0bb1e 100644 --- a/src/soc/amd/common/pi/Makefile.inc +++ b/src/soc/amd/common/pi/Makefile.inc @@ -16,4 +16,7 @@ ramstage-y += image.c ramstage-y += refcode_loader.c ramstage-y += s3_resume.c +CFLAGS_x86_32 += -Wno-pragma-pack +CFLAGS_x86_64 += -Wno-pragma-pack + endif # CONFIG_SOC_AMD_PI