64435eabdc
Update to v4.1.0. Also includes other major packaging changes as follows: There is a new package maintenance workflow - see README.PACKAGING for details. The sibling packages qemu-linux-user and qemu-testsuite are now created with the Build Service's MultiBuild feature. This also necessitates combining the qemu-linux-user changelog content back into qemu's. Luckily the delta there is quite small. Note that the qemu spec file is now that much busier, but added section markers should help reduce the confusion. Also qemu is being enabled for RISCV host compatibility, so some changes are related to that as well. OBS-URL: https://build.opensuse.org/request/show/730437 OBS-URL: https://build.opensuse.org/package/show/Virtualization/qemu?expand=0&rev=487
30 lines
1.0 KiB
Diff
30 lines
1.0 KiB
Diff
From: Stewart Smith <stewart@linux.ibm.com>
|
|
Date: Tue, 18 Jun 2019 16:09:44 +1000
|
|
Subject: Disable -Waddress-of-packed-member for GCC9
|
|
|
|
Git-commit: b904cb733750de1bb0e04e5012c391a9c3094d11
|
|
|
|
We throw a bunch of errors in errorlog code otherwise, which we should
|
|
fix, but we don't *have* to yet.
|
|
|
|
Signed-off-by: Stewart Smith <stewart@linux.ibm.com>
|
|
Signed-off-by: Bruce Rogers <brogers@suse.com>
|
|
---
|
|
Makefile.main | 3 ++-
|
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/roms/skiboot/Makefile.main b/roms/skiboot/Makefile.main
|
|
index a8e34d16c4729921901871b3f9e3..91dc73e06903e8f10c6ad09c1db9 100644
|
|
--- a/roms/skiboot/Makefile.main
|
|
+++ b/roms/skiboot/Makefile.main
|
|
@@ -120,7 +120,8 @@ endif
|
|
CFLAGS += $(call try-cflag,$(CC),-Wjump-misses-init) \
|
|
$(call try-cflag,$(CC),-Wsuggest-attribute=const) \
|
|
$(call try-cflag,$(CC),-Wsuggest-attribute=noreturn) \
|
|
- $(call try-cflag,$(CC),-Wstack-usage=1024)
|
|
+ $(call try-cflag,$(CC),-Wstack-usage=1024) \
|
|
+ $(call try-cflag,$(CC),-Wno-error=address-of-packed-member)
|
|
|
|
CFLAGS += $(CWARNS) $(OPTS) $(DBG)
|
|
|