Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-09-19 | Fix bug with forced display of sign on negative integers | Ranger Harke | |
The negative sign was displayed twice. | |||
2013-09-19 | Fix bug with zero-padded negative integers | Ranger Harke | |
The zero padding was before the sign. It should be after. | |||
2013-09-19 | Correct typo. | ngld | |
2013-09-18 | generate valid code for segfaulting loads, not assignless aborts | Alon Zakai | |
2013-09-18 | Fix #1632: Correctly handle the optional 0x prefix for hex numbers (%x/%X). | ngld | |
2013-09-18 | Merge pull request #1630 from ngld/fix-resume-exception | Alon Zakai | |
Fix EXCEPTION_CATCHING_WHITELIST (#1623) | |||
2013-09-18 | handle memory initializer when there are deps added during preRun | Alon Zakai | |
2013-09-17 | Fix #1166: Correct the amount of allocated memory for non-ascii strings in ↵ | ngld | |
ccallFunc(). | |||
2013-09-17 | Fix #1623: Add missing checks for EXCEPTION_CATCHING_WHITELIST. | ngld | |
2013-09-17 | Fixes in pread() | Michael J. Bishop | |
The bug occurs when pread() doesn't return 0 when asked to read an offset beyond its buffer. This behavior is explicitly documented at: http://pubs.opengroup.org/onlinepubs/000095399/functions/read.html > If the starting position is at or after the end-of-file, 0 > shall be returned | |||
2013-09-17 | Implemented dprintf. (Fixes #1250) | ngld | |
2013-09-17 | Updated library_sdl.js | ngld | |
2013-09-16 | Integrate the new tool into emscripten | ngld | |
Automatically compile struct_info.json and save the compiled version in the emscripten cache. | |||
2013-09-16 | Merge pull request #1618 from sbalko/incoming | Alon Zakai | |
Incoming | |||
2013-09-14 | dynamically determine relooper heap size using RELOOPER_BUFFER_SIZE1.5.9 | Alon Zakai | |
2013-09-14 | Incorporating formatting suggestions from pull request | Soeren Balko | |
2013-09-13 | Merge pull request #1620 from waywardmonkeys/remove-cxx-mangled-catgets | Alon Zakai | |
Remove cxx mangled catgets / catopen / catclose. | |||
2013-09-14 | Remove C++ mangled catgets / catopen / catclose. | Bruce Mitchener | |
In the old headers, these were not extern "C", so they would show up mangled when built for C++. This is no longer the case with the new libc headers. | |||
2013-09-13 | tolerate SDL_Delay in workers | Alon Zakai | |
2013-09-13 | RELOOPER_BUFFER_SIZE to change the relooper buffer size easily1.5.8 | Alon Zakai | |
2013-09-13 | refactor memory initializer code to use run dependenciesfailure | Alon Zakai | |
2013-09-13 | emscripten_async_load_script | Alon Zakai | |
2013-09-13 | clear dependenciesFulfilled after use | Alon Zakai | |
2013-09-13 | refactor code to handle when run dependencies reach 0 | Alon Zakai | |
2013-09-13 | remove unneeded var | Alon Zakai | |
2013-09-13 | add some stubs for libc needed by libc++ | Alon Zakai | |
2013-09-13 | Change various 64 bit typedefs over to 32 bit. | Bruce Mitchener | |
This also removes all of the changes that were needed for those typedefs to be 64 bit. | |||
2013-09-13 | gethostbyname_r update. | Bruce Mitchener | |
* gethostbyname_r is now the 6 arg version. * Make enet use the right code path (this should be upstreamed). * Add a compat header to make these declarations visible to all without extra compilation flags. | |||
2013-09-13 | Fix sockaddr struct definitions for musl. | Bruce Mitchener | |
2013-09-13 | Handle fpclassify and signbit for long double.fails | Bruce Mitchener | |
2013-09-13 | Provide better impl of __assert_fail(). | Bruce Mitchener | |
2013-09-13 | Fix fpclassify with musl libc headers. | Bruce Mitchener | |
musl defines __fpclassify, __fpclassifyf, __fpclassifyl while the old headers used __fpclassifyd for double rather than __fpclassify. | |||
2013-09-13 | Fix time tests. | Bruce Mitchener | |
2013-09-13 | Update to work with new libc headers. | Bruce Mitchener | |
2013-09-13 | Update libc headers to use musl headers. | Bruce Mitchener | |
2013-09-13 | Enable %[] pattern in scanf | Soeren Balko | |
2013-09-12 | try to use console.log even in workers | Alon Zakai | |
2013-09-12 | do not switchify illegally-typed switches | Alon Zakai | |
2013-09-12 | Module.logReadFiles option | Alon Zakai | |
2013-09-11 | we only allow 1 exported variable from inline js; #1613 | Alon Zakai | |
2013-09-11 | better comment on inline js in asm.js | Alon Zakai | |
2013-09-11 | better assertion message for corruption checker and asm | Alon Zakai | |
2013-09-11 | listen to blur on the window, not the document, so chrome works | Alon Zakai | |
2013-09-10 | handle flexible arrays at the end of structs, whose elements are themselves ↵ | Alon Zakai | |
structs; fixes #1602 | |||
2013-09-10 | Add support for marshalling UTF-16 strings to/from JS. Allows passing ↵ | Jukka Jylänki | |
wchar_t strings to JS when building with -fshort-wchar. Closes #1565. | |||
2013-09-10 | Fix UTF-16 surrogate detection. | Jukka Jylänki | |
2013-09-10 | Fix UTF32 <-> JS string conversion for non-BMP characters. Turns out JS ↵ | Jukka Jylänki | |
string functions .length, .charCodeAt and .fromCharCode do not operate on Unicode code points, but UTF-16-encoded Unicode code units. | |||
2013-09-10 | Rename utf32<->jsstring marshalling functions to UTF32ToString and ↵ | Jukka Jylänki | |
stringToUTF32 following azakai's suggestion on naming convention. | |||
2013-09-10 | Add functions for marshalling wchar_t (which is fixed 32-bit UTF32LE on ↵ | Jukka Jylänki | |
Unix) strings to and from JS, and add a test. | |||
2013-09-10 | remove no longer necessary preventDefault | Alon Zakai | |