1
0
Fork 0

Merge pull request #103176 from 0xcafeb33f/theora-asm-opt

Fix libtheora optimizations causing errors in calling function for x86_64 Windows
This commit is contained in:
Rémi Verschelde 2025-02-23 12:13:13 +01:00
commit 58e4e34564
No known key found for this signature in database
GPG Key ID: C3336907360768E1
1 changed files with 1 additions and 1 deletions

View File

@ -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"])