From f50cc6d2c0b64de6eb2bbc1c52e4c333b29b16f1 Mon Sep 17 00:00:00 2001 From: Ryan Dwyer Date: Thu, 13 Oct 2022 21:17:35 +1000 Subject: [PATCH] Add -mno-abicalls to gcc flags to fix build on Ubuntu --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 88bd94216..b8b495dfd 100644 --- a/Makefile +++ b/Makefile @@ -446,6 +446,7 @@ else ifeq ($(COMPILER), gcc) -mabi=32 \ -mfix4300 \ -mdivide-breaks \ + -mno-abicalls \ -ffreestanding \ -ffast-math \ -fno-unsafe-math-optimizations \