[PATCH] seabios-hppa: add -fno-ipa-sra to the compiler flags

Michael Tokarev posted 1 patch 3 years, 8 months ago
Failed in applying to current master (apply log)
[PATCH] seabios-hppa: add -fno-ipa-sra to the compiler flags
Posted by Michael Tokarev 3 years, 8 months ago
Date: Wed, 22 Jul 2020 22:15:46 +0300

This allows seabios-hppa to build with gcc-10. Or else the
compiler generates eg memset.isra.0 symbols instead of memset,
and the final link step fails due to missing memset.

Previous versions of gcc, for quite some time already, recognizes
this option but it does nothing since apparently no-ipa-sra is the
default. So there's no harm in adding it unconditionally, it seems.

Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>

---
Sending this as a proper patch with proper S-o-b, just in case.

diff --git a/Makefile.parisc b/Makefile.parisc
index c0d5d958..1b7757e8 100644
--- a/Makefile.parisc
+++ b/Makefile.parisc
@@ -75,3 +75,3 @@ COMMONCFLAGS := -I$(OUT) -Isrc -Ivgasrc -Os -MD -g \
     -fdata-sections -fno-common -fno-merge-constants -mdisable-fpregs \
-    -fno-builtin-printf
+    -fno-builtin-printf -fno-ipa-sra
 COMMONCFLAGS += $(call cc-option,$(CC),-nopie,)