Skip to content

Commit 23b4067

Browse files
committed
feedback
1 parent dbf71f5 commit 23b4067

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

emcc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1531,7 +1531,7 @@ def check(input_file):
15311531
if not shared.Settings.MINIMAL_RUNTIME or shared.Settings.EXIT_RUNTIME:
15321532
# MINIMAL_RUNTIME only needs callRuntimeCallbacks in certain cases, but the normal runtime
15331533
# always does.
1534-
shared.Settings.DEFAULT_LIBRARY_FUNCS_TO_INCLUDE += ['$callRuntimeCallbacks']
1534+
shared.Settings.DEFAULT_LIBRARY_FUNCS_TO_INCLUDE += ['$callRuntimeCallbacks', '$dynCall']
15351535

15361536
if shared.Settings.USE_PTHREADS:
15371537
# memalign is used to ensure allocated thread stacks are aligned.

tools/ports/sdl2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ def clear(ports, settings, shared):
9090

9191

9292
def process_dependencies(settings):
93-
settings.DEFAULT_LIBRARY_FUNCS_TO_INCLUDE += ['$autoResumeAudioContext', '$dynCall']
93+
settings.DEFAULT_LIBRARY_FUNCS_TO_INCLUDE += ['$autoResumeAudioContext']
9494

9595

9696
def process_args(ports):

0 commit comments

Comments
 (0)