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 111e8a1 commit 6b8d939Copy full SHA for 6b8d939
lib-rt/setup.py
@@ -84,7 +84,7 @@ def run(self) -> None:
84
cflags += ["-O3"]
85
if X86_64:
86
cflags.append("-msse4.2") # Enable SIMD (see also mypyc/build.py)
87
- if platform.system() == 'Emscripten':
+ if "PYODIDE_PACKAGE_ABI" in os.environ:
88
cflags.append("-msimd128")
89
elif compiler.compiler_type == "msvc":
90
cflags += ["/O2"]
0 commit comments