-
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
Remove EM_LOG_C_STACK feature of emscripten_log #23553
Conversation
060da25
to
9bdce5d
Compare
9bdce5d
to
7fee72f
Compare
7fee72f
to
e8b476b
Compare
@kripken do you think its worth trying to resurect this feature? It seems like it was some kind of user-space source-map parser.. I'm not sure it worth the effort given that nobody has asked for it so many years. |
e8b476b
to
d38a79f
Compare
I agree it's not worth keeping given the lack of users. Have people been using it with wasm2js perhaps though? If not sgtm to remove. |
Source maps do not work with wasm2js ( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm, but how about this rephrasing of the changlog? To clarify this has no impact on source maps in general.
ChangeLog.md
Outdated
- The `EM_LOG_C_STACK` flag to `emscripten_log` was deprecated and the helper | ||
file on which it was based (`emscripten-source-map.min.js`) deteted. It | ||
seems this feature has been broken for at least 4 years now. (#23553) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- The `EM_LOG_C_STACK` flag to `emscripten_log` was deprecated and the helper | |
file on which it was based (`emscripten-source-map.min.js`) deteted. It | |
seems this feature has been broken for at least 4 years now. (#23553) | |
- The `EM_LOG_C_STACK` flag to `emscripten_log` was deprecated and the helper | |
file on which it was based (`emscripten-source-map.min.js`) deleted. This | |
feature (userspace source map parsing in logs) was not ported to wasm | |
source maps, so it has not worked, and we have had no requests for it. This | |
has no impact on browser devtools support of source maps (which work | |
fully). (#23553) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done. With a little re-phrasing of my own.
This was supported by `emscripten-source-map.min.js` which seems like minified source map parser, but I don't think this feature has worked for at least 4 years. This feature was part of `emscripten_log` since it was first added in 26d6ad3 but I know of anyone that ever used it. Fixes: emscripten-core#13089
d38a79f
to
cecd6a6
Compare
This was supported by
emscripten-source-map.min.js
which seems like minified source map parser, but I don't think this feature has worked for at least 4 years since we switched to using wasm and wasm source maps.This feature was part of
emscripten_log
since it was first added in 26d6ad3 but I know of anyone that ever used it.Fixes: #13089