Skip to content

Commit 40a93c2

Browse files
authored
Disable EXPRECISION for DYNAMIC_ARCH in combination with TARGET=GENERIC
NO_EXPRECISION is disabled for the GENERIC_TARGET already, so prevent mixing with code parts that use a different float size by default
1 parent 9efc3f0 commit 40a93c2

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Makefile.system

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,11 @@ endif
9393
ifdef TARGET
9494
GETARCH_FLAGS := -DFORCE_$(TARGET)
9595
GETARCH_FLAGS += -DUSER_TARGET
96+
ifeq ($(TARGET), GENERIC)
97+
ifeq ($(DYNAMIC_ARCH), 1)
98+
override NO_EXPRECISION=1
99+
endif
100+
endif
96101
endif
97102

98103
# Force fallbacks for 32bit

0 commit comments

Comments
 (0)