From 5201dfb34ce03e69bf6d08619f3ad9a3b59bbea8 Mon Sep 17 00:00:00 2001 From: cafebeef <17749567+0xcafeb33f@users.noreply.github.com> Date: Sat, 22 Feb 2025 09:42:48 -0600 Subject: [PATCH] Windows x86_64 GCC: Disable Theora assembly optimizations Co-authored-by: Bernat Arlandis --- platform/windows/detect.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/windows/detect.py b/platform/windows/detect.py index 6f57b880441..bbdcb9e79aa 100644 --- a/platform/windows/detect.py +++ b/platform/windows/detect.py @@ -732,7 +732,7 @@ def configure_mingw(env: "SConsEnvironment"): if env["use_static_cpp"]: env.Append(LINKFLAGS=["-static"]) - if env["arch"] in ["x86_32", "x86_64"]: + if env["arch"] == "x86_32": env["x86_libtheora_opt_gcc"] = True env.Append(CCFLAGS=["-ffp-contract=off"])