git » iverilog.git » commit 289c25b

Add -fcommon workaround for GCC 10

author Evangelos Foutras
2020-07-07 21:16:35 UTC
committer Evangelos Foutras
2020-07-07 21:16:35 UTC
parent f60d36b896c2625c2e745eb61dd85be7d8c29601

Add -fcommon workaround for GCC 10

PKGBUILD +2 -0

diff --git a/PKGBUILD b/PKGBUILD
index df105ce..45f47a6 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -25,6 +25,8 @@ prepare() {
 build() {
   cd "$pkgname"
 
+  CFLAGS+=' -fcommon' # https://wiki.gentoo.org/wiki/Gcc_10_porting_notes/fno_common
+
   ./configure --prefix=/usr
   make
 }