8000 Tags · pandening/emscripten · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Tags: pandening/emscripten

Tags

1.38.40

Toggle 1.38.40's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Make read, readAsync, readBinary, setWindowTitle normal JS variables (e…

…mscripten-core#9047)

This replaces Module['readBinary'] with readBinary etc., that is, moves them from Module to be just normal JS variables.

This change allows better JS minification: the names read, readAsync etc. can be minified now, and even better if the variables are not used then they can be removed entirely. On hello world this saves 4% of JS size in -O3 --closure 1 with the wasm backend.

This is an internal API change. However, it's possible some users depend on it, so I added a mention in the changelog, and in builds with ASSERTIONS an error message is shown if the old APIs are used.

Note that read is also renamed to read_ (since "read" is an API call in the SpiderMonkey shell).

1.38.39

Toggle 1.38.39's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Fix browser harness logging (emscripten-core#8980)

Turns out at least some of the duplicate logging we have is because if a python web request hander doesn't return any headers, it just calls it again. Odd that this doesn't recurse infinitely... anyhow, just send some empty headers for the logging code to avoid that.

Also fix the logging in python3, where urllib is structured differently.

1.38.38

Toggle 1.38.38's commit message
Add extended Node feature check to fix issue emscripten-core#8816 (em…

…scripten-core#8832)

1.38.37

Toggle 1.38.37's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Handle a tiny {} function body in modifyFunction, which can happen wh…

…en bysyncify adds extra assertion checks (emscripten-core#8855)

1.38.36

Toggle 1.38.36's commit message
update changelog

1.38.35

Toggle 1.38.35's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Use a response file if necessary in llvm opt invocation (emscripten-c…

…ore#8784)

On fastcomp we defer linking  and send potentially a long list of files into llvm opt.

1.38.34

Toggle 1.38.34's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Make tools/gen_struct_info.py runnable with no args (emscripten-core#…

…8716)

Also, make it pretty print by default.

This should allow for easier debugging.

1.38.33

Toggle 1.38.33's commit message

Verified