-
wasm-ld: error: C:\Users\xxx\AppData\Local\Temp\tmp55p8damxlibemscripten_js_symbols.so: undefined symbol: _emscripten_run_callback_on_thread. Required by emscripten_set_fullscreenchange_callback_on_thread,this is what I built my project and it shows the error,what is the problem,I use -pthread,-sPROXY_TO_PTHREAD=1 -sOFFSCREENCANVAS_SUPPORT=1 to build |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
Is this a regression? (i.e. did it work in previous version?) Those symbols ( Are you share the full link command you are using? |
Beta Was this translation helpful? Give feedback.
Yes,
-sSTRICT
implies-sAUTO_NATIVE_LIBRARIES
which means you need to explicitly add-lhtml5
.. or you could set-sAUTO_NATIVE_LIBRARIES=1
explicitly.