Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions tests/test_other.py
Original file line number Diff line number Diff line change
Expand Up @@ -10605,6 +10605,8 @@ def test_deps_info(self):
cmd.append('-sUSE_WEBGPU')
if function.startswith('__cxa_'):
cmd.append('-fexceptions')
if function.startswith('glfwGetMonitors'):
cmd.append('-sUSE_GLFW=3')
# In WebAssemblyLowerEmscriptenEHSjLj pass in the LLVM backend, function
# calls that exist in the same function with setjmp are converted to some
# code sequence that includes emscripten_longjmp. emscripten_longjmp is
Expand Down
1 change: 1 addition & 0 deletions tools/deps_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,7 @@
'glfwGetProcAddress': ['malloc'],
'glfwInit': ['malloc', 'free'],
'glfwSleep': ['sleep'],
'glfwGetMonitors': ['malloc'],
'gmtime': ['malloc'],
'gmtime_r': ['malloc'],
'localtime': ['_get_tzname', '_get_daylight', '_get_timezone', 'malloc'],
Expand Down