Skip to content

Commit 47b15a6

Browse files
committed
Flake
1 parent 246211d commit 47b15a6

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

emcc.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -837,7 +837,6 @@ def get_cflags(user_args):
837837
if settings.EMSCRIPTEN_TRACING:
838838
cflags.append('-D__EMSCRIPTEN_TRACING__=1')
839839

840-
841840
if settings.SHARED_MEMORY:
842841
cflags.append('-D__EMSCRIPTEN_SHARED_MEMORY__=1')
843842

@@ -1908,7 +1907,6 @@ def default_setting(name, new_default):
19081907
# overrides that.
19091908
default_setting('ABORTING_MALLOC', 0)
19101909

1911-
19121910
if settings.SHARED_MEMORY:
19131911
# UTF8Decoder.decode doesn't work with a view of a SharedArrayBuffer
19141912
settings.TEXTDECODER = 0

tools/system_libs.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -538,6 +538,7 @@ def variations(cls):
538538
# pthreads and Wasm workers are currently not supported together.
539539
return [combo for combo in combos if not combo['is_mt'] or not combo['is_ww']]
540540

541+
541542
class OptimizedAggressivelyForSizeLibrary(Library):
542543
def __init__(self, **kwargs):
543544
self.is_optz = kwargs.pop('is_optz')

0 commit comments

Comments
 (0)