We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 293c0f7 commit 0e51911Copy full SHA for 0e51911
platform/windows/detect.py
@@ -639,7 +639,8 @@ def configure_mingw(env: "SConsEnvironment"):
639
640
# TODO: Re-evaluate the need for this / streamline with common config.
641
if env["target"] == "template_release":
642
- env.Append(CCFLAGS=["-msse2"])
+ if env["arch"] != "arm64":
643
+ env.Append(CCFLAGS=["-msse2"])
644
elif env.dev_build:
645
# Allow big objects. It's supposed not to have drawbacks but seems to break
646
# GCC LTO, so enabling for debug builds only (which are not built with LTO
0 commit comments