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 2fed789 commit 111e8a1Copy full SHA for 111e8a1
lib-rt/setup.py
@@ -84,6 +84,8 @@ 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':
88
+ cflags.append("-msimd128")
89
elif compiler.compiler_type == "msvc":
90
cflags += ["/O2"]
91
0 commit comments