Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-11-08 | no-op for __builtin_prefetch; fixes #1765 | Alon Zakai | |
2013-11-05 | stub for pthread_rwlock_init | Alon Zakai | |
2013-11-05 | handle errors in ioctl | Alon Zakai | |
2013-11-05 | Fix dependencies on DNS | bobroberts177 | |
2013-11-04 | fake dladdr | Alon Zakai | |
2013-11-04 | pthread_mutexattr_setpshared stub | Alon Zakai | |
2013-11-04 | Give names to most manually assigned functions in the .js files, in form ↵ | Jukka Jylänki | |
"var x = function()" -> "function x()" so that error stack traces and profiling stack traces are more informative and do not contain anonymous functions. | |||
2013-10-30 | make sure the eval in emscripten_run_script_string emits a string | Alon Zakai | |
2013-10-30 | begin to add emscripten_float32x4_signmask | Alon Zakai | |
2013-10-29 | optimize scanString to not run the regex more than once | Alon Zakai | |
2013-10-28 | small whitespace style fix | Alon Zakai | |
2013-10-26 | fixed float read performance in _scanString | icetooth | |
2013-10-12 | use stackTrace in various places | Alon Zakai | |
2013-10-12 | demangle stacks in abort(), using new stackTrace utility | Alon Zakai | |
2013-10-06 | make EM_ASM use strings on the heap, so it works in asm, and cache the ↵ | Alon Zakai | |
generated functions | |||
2013-10-02 | fix misc library asm validations | Alon Zakai | |
2013-10-02 | optimize Math.x to Math_x | Alon Zakai | |
2013-10-01 | Break up mkstemp impl to provide mktemp impl. | Bruce Mitchener | |
The libcxx test suite wants mktemp(), so provide it by pulling out some of the internals of mkstemp(). | |||
2013-09-30 | fix other.test_static_link | Alon Zakai | |
2013-09-30 | Merge branch 'incoming' of github.com:ngld/emscripten into incoming1.6.4 | Alon Zakai | |
Conflicts: AUTHORS src/library_sdl.js tools/shared.py | |||
2013-09-27 | - made chdir use FS.chdir | Anthony Pesch | |
- changed direct references to FS.currentPath to use FS.cwd() - fixed mountpoint resolving in mount - added async FS.syncfs | |||
2013-09-26 | Merge pull request #1669 from ngld/fix-sscanf-whitespace | Alon Zakai | |
Fix #1668: whiteSpace in _scanString should use only char codes as keys | |||
2013-09-26 | Add wprintf, swprintf, vswprintf, vfwprintf, etc. | Bruce Mitchener | |
2013-09-26 | Implement locale-ignoring strcoll_l. | Bruce Mitchener | |
2013-09-26 | Add a lot of locale code. | Bruce Mitchener | |
2013-09-25 | Replace references to QUANTUM_SIZE with C_STRUCTS equivalents. | ngld | |
2013-09-25 | Add timeb.h to struct_info.json | ngld | |
2013-09-25 | Fix #1668: whiteSpace in _scanString should use only char codes as keys not ↵ | ngld | |
chars and char codes. | |||
2013-09-25 | Simple implementation of newlocale / freelocale. | Bruce Mitchener | |
This removes a couple of errors from libcxx test suites. | |||
2013-09-24 | Merge pull request #1625 from ngld/dprintf | Alon Zakai | |
Implemented dprintf. (Fixes #1250) | |||
2013-09-19 | Implement missing 'space' formatting flag | Ranger Harke | |
This flag causes space (padding) to be reserved for the sign even if the number is positive. It is basically the same as the 'plus' flag except that a space is displayed instead of a plus sign. The 'plus' flag takes precedence. | |||
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 | Fix #1632: Correctly handle the optional 0x prefix for hex numbers (%x/%X). | ngld | |
2013-09-17 | Implemented dprintf. (Fixes #1250) | 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 | Incorporating formatting suggestions from pull request | Soeren Balko | |
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 | 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 | Enable %[] pattern in scanf | Soeren Balko | |