From f593205e95ae2b3c880bf504317bd3d905854100 Mon Sep 17 00:00:00 2001 From: Ariadne Conill Date: Wed, 7 Aug 2024 20:06:26 -0700 Subject: [PATCH] build: disable ARM hard float support by default It appears to be broken. --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1fb1580..0c68f13 100644 --- a/Makefile +++ b/Makefile @@ -42,7 +42,8 @@ else CPPFLAGS += -Iarch/common/include endif -FORCE_SOFT_FLOAT := no +# ARM hard float support is presently broken. +FORCE_SOFT_FLOAT := yes ifeq ($(FORCE_SOFT_FLOAT),yes) CPPFLAGS += -DFORCE_SOFT_FLOAT