shithub: qk1

Download patch

ref: 7f9c4b6c2d5017d10b370b4e55691b5a2631eb75
parent: 229a1dc2e021af252c97cd42db70fb5b414b9246
author: Sigrid Solveig Haflínudóttir <sigrid@ftrv.se>
date: Fri Jan 5 19:23:16 EST 2024

remove -ffast-math and add a comment so it never comes back

--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,7 @@
 BIN=${DESTDIR}${PREFIX}/bin
 EXTRA_CFLAGS=$$(pkg-config --cflags sdl2 openal)
 EXTRA_LDFLAGS=$$(pkg-config --libs sdl2 openal)
-CFLAGS?=-O3 -g -march=native -ffast-math
+CFLAGS?=-O3 -g -march=native # do NOT add -ffast-math
 CFLAGS+=-Wall -Wextra -Wno-unknown-pragmas -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-microsoft-anon-tag
 CFLAGS+=-fms-extensions
 CFLAGS+=-I3rd/parg -Iunix -I. ${EXTRA_CFLAGS}