-
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
New CMake sizeof check breaks pthread builds #18354
Comments
It's probably possible to move flags around so that they don't apply to configure stage, but I suspect this might break more projects than #18309 fixed and might be better to revert until we have a better solution. |
I think maybe we should make STANDALONE_WASM works with shared memory. Either that or inject |
Sure, that would be ideal, but I'm not sure how much effort it is, so a revert for now to unbreak builds seemed like a safer suggestion. |
Oh sorry, I didn't see the suggestions of a revert. I'm fine with reverting for now. |
Using these two options together will most likely result in some non-standard JS imports (e.g. `_pthread_create_js`), but the point of `STANDALONE_WASM` is not to completely eliminate those, only to avoid them where possible. Fixes: #18354
Using these two options together will most likely result in some non-standard JS imports (e.g. `_pthread_create_js`), but the point of `STANDALONE_WASM` is not to completely eliminate those, only to avoid them where possible. Fixes: #18354
Using these two options together will most likely result in some non-standard JS imports (e.g. `_pthread_create_js`), but the point of `STANDALONE_WASM` is not to completely eliminate those, only to avoid them where possible. Fixes: #18354
Using these two options together will most likely result in some non-standard JS imports (e.g. `_pthread_create_js`), but the point of `STANDALONE_WASM` is not to completely eliminate those, only to avoid them where possible. Fixes: #18354
Using these two options together will most likely result in some non-standard JS imports (e.g. `_pthread_create_js`), but the point of `STANDALONE_WASM` is not to completely eliminate those, only to avoid them where possible. Fixes: #18354
I'm seeing an issue when using #18309 (via emscripten 3.1.28) when building libjpeg as part of my project build which uses
-pthread
and SIMD.This is the generated
jconfigint.h
:Here's CMakeCache.txt:
Looks like it failed due to
-pthread
in flags (note the "STANDALONE_WASM does not support shared memories yet"):@sbc100
The text was updated successfully, but these errors were encountered: