mame: readd relevant part of ppc patch

We still need 64-bit long double.

[ci skip]
This commit is contained in:
q66 2019-10-31 17:21:44 +01:00 committed by Helmut Pozimski
parent fbaa28bd91
commit 496f9a6fe3

View file

@ -0,0 +1,15 @@
--- makefile
+++ makefile
@@ -394,6 +394,12 @@ BIGENDIAN := 1
endif
endif # BIGENDIAN
+# Work around an issue with long doubles on ppc (#3157)
+ifneq (,$(findstring ppc,$(UNAME)))
+ARCHOPTS_C += -mlong-double-64
+ARCHOPTS_CXX += -mlong-double-64
+endif
+
ifndef PYTHON_EXECUTABLE
PYTHON := python
else