From 4ac72eae50e34576c1796d6131e375dde1aa12f7 Mon Sep 17 00:00:00 2001 From: Ryan Dwyer Date: Wed, 19 Oct 2022 23:15:11 +1000 Subject: [PATCH] Add -fno-common to fix build in gcc v9 --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index e8920628e..c36b706e2 100644 --- a/Makefile +++ b/Makefile @@ -448,6 +448,7 @@ else ifeq ($(COMPILER), gcc) -mno-abicalls \ -ffreestanding \ -fno-builtin \ + -fno-common \ -fno-inline-functions \ -fno-merge-constants \ -fno-strict-aliasing \