From: Kevin O'Connor Date: Wed, 21 Aug 2019 13:18:25 +0000 (-0400) Subject: Makefile: Build with -Wno-address-of-packed-member X-Git-Tag: rel-1.13.0~27 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=43f5df79dad6738d52ea79d072de2b56eb96a91f;p=seabios.git Makefile: Build with -Wno-address-of-packed-member Building with gcc v9 causes lots of warnings about pointers to packed variables. However, SeaBIOS is limited to x86 where unaligned reads/writes are supported by the cpu. So, disable that warning. Signed-off-by: Kevin O'Connor Reviewed-by: Philippe Mathieu-Daudé --- diff --git a/Makefile b/Makefile index d16d1ae..5f7d537 100644 --- a/Makefile +++ b/Makefile @@ -68,6 +68,7 @@ COMMONCFLAGS += $(call cc-option,$(CC),-fno-pie,) COMMONCFLAGS += $(call cc-option,$(CC),-fno-stack-protector,) COMMONCFLAGS += $(call cc-option,$(CC),-fno-stack-protector-all,) COMMONCFLAGS += $(call cc-option,$(CC),-fstack-check=no,) +COMMONCFLAGS += $(call cc-option,$(CC),-Wno-address-of-packed-member,) COMMA := , CFLAGS32FLAT := $(COMMONCFLAGS) -DMODE16=0 -DMODESEGMENT=0