Skip to content

Commit 58e4e34

Browse files
committed
Merge pull request #103176 from 0xcafeb33f/theora-asm-opt
Fix libtheora optimizations causing errors in calling function for x86_64 Windows
2 parents 0c3787a + 5201dfb commit 58e4e34

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

platform/windows/detect.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -732,7 +732,7 @@ def configure_mingw(env: "SConsEnvironment"):
732732
if env["use_static_cpp"]:
733733
env.Append(LINKFLAGS=["-static"])
734734

735-
if env["arch"] in ["x86_32", "x86_64"]:
735+
if env["arch"] == "x86_32":
736736
env["x86_libtheora_opt_gcc"] = True
737737

738738
env.Append(CCFLAGS=["-ffp-contract=off"])

0 commit comments

Comments
 (0)