-
Notifications
You must be signed in to change notification settings - Fork 3.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Potential dependency regression in 3.1.38 when using emscripten_set_main_loop() #19363
Comments
Wait, I guess this isn't quite the same issue.. but similar. |
Do you have the link flags used in the failing example? it seems that the filesystem must not be included. I'm curious if you are explictly opting out using |
Ah yes, that's correct (rather:
|
Fixed in #19362 |
ocornut
added a commit
to ocornut/imgui
that referenced
this issue
May 18, 2023
ocornut
added a commit
to ocornut/imgui
that referenced
this issue
Jul 13, 2023
Change for #6602 broke, supposedly because using old version of emsdk. Initial reason for locking 3.1.37 was 3.1.38 had a bug, now fixed emscripten-core/emscripten#19363
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I just stumbled over this error when trying to build some of my older samples which use
emscripten_set_main_loop()
with emsdk 3.1.38 (AFAIK this is a regression from 3.1.37 to 3.1.38):Looks like
$preloadPlugin
needs to be added somewhere in the dependencies foremscripten_set_main_loop
?My newer samples use
emscripten_request_animation_frame()
which doesn't have this problem.Meanwhile I rewrote those older samples to use
emscripten_request_animation_frame()
so it's not a blocker for me, but I thought I should still at least write a ticket :)(cc @sbc100)
The text was updated successfully, but these errors were encountered: