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 dcfad64 commit 2b73900Copy full SHA for 2b73900
tools/system_libs.py
@@ -725,7 +725,7 @@ def get_cflags(self):
725
if self.is_mt:
726
cflags += ['-pthread', '-sWASM_WORKERS']
727
if self.is_ww:
728
- cflags += ['-sSHARED_MEMORY=1']
+ cflags += ['-sWASM_WORKERS']
729
return cflags
730
731
def get_base_name(self):
@@ -1425,8 +1425,6 @@ def __init__(self, **kwargs):
1425
1426
def get_cflags(self):
1427
cflags = super().get_cflags()
1428
- if self.is_ww:
1429
- cflags += ['-sWASM_WORKERS']
1430
if self.debug:
1431
cflags += ['-D_DEBUG']
1432
# library_wasm_worker.c contains an assert that a nonnull parameter
0 commit comments