commit fded93d7984e42c369c572d5b953b1afe06f8ced
parent e1008f463b943ecd23e9584beb5f6cfa054c3e0f
Author: falkTX <falktx@falktx.com>
Date: Sun, 10 May 2020 01:57:02 +0100
Use -fno-finite-math-only when building DGL
Diffstat:
1 file changed, 3 insertions(+), 0 deletions(-)
diff --git a/Makefile.base.mk b/Makefile.base.mk
@@ -239,6 +239,9 @@ HAVE_LIBLO = $(shell $(PKG_CONFIG) --exists liblo && echo true)
# ---------------------------------------------------------------------------------------------------------------------
# Set Generic DGL stuff
+# needed because reasons (specifically, libc broke ABI)
+DGL_FLAGS = -fno-finite-math-only
+
ifeq ($(HAIKU),true)
DGL_SYSTEM_LIBS += -lbe
endif