Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-05-19 | Archive groups code review changes. | Ryan Sturgell | |
2014-05-07 | Add support for archive groups. | Ryan Sturgell | |
emcc now understands -Wl,--start-group, -Wl,--end-group to group static libraries. Static libraries in a group need not be specified in dependent to dependency order and can have circular dependencies. | |||
2014-05-07 | Track original flag positions in emcc. | Ryan Sturgell | |
Source files, libs, and linker flags all need to be separately processed. This allows them to be correctly shuffled back together for further link processing. | |||
2014-05-07 | Extract helper functions from main link loop. | Ryan Sturgell | |
This enables future changes which will re-scan archives for objects (either grouped with -Wl,--start-group, -Wl,--end-group or some new emcc specific flag). This is mostly moving lines around and adding some comments. The only functional change is that if you specify the same archive multiple times (a workaround for the lack of grouping flags), we will now only extract it once instead of multiple times. But it will still be scanned multiple times. | |||
2014-05-07 | Add Ryan Sturgell to AUTHORS | Ryan Sturgell | |
2014-05-07 | Add the testcase for https://github.com/kripken/emscripten/issues/2334 to ↵ | Dan Gohman | |
the testsuite. | |||
2014-05-06 | update setTemp* as well | Alon Zakai | |
2014-05-06 | emit >>0 in HEAP8, for consistency with HEAP16|32 | Alon Zakai | |
2014-05-06 | some warnings on libc things we do not support; fixes #2313 | Alon Zakai | |
2014-05-06 | 1.17.01.17.0 | Alon Zakai | |
2014-05-06 | Apply Chad's fix from issue #2335 to fix other.test_embind. | Jukka Jylänki | |
2014-05-05 | Merge pull request #2333 from juj/ffdb | Alon Zakai | |
ffdb.py | |||
2014-05-05 | Merge pull request #2336 from juj/run_js_retcode_assert | Alon Zakai | |
Run js retcode assert | |||
2014-05-05 | Add support to function run_js() in jsrun.py to assert against a given ↵ | Jukka Jylänki | |
process return code. This uncovers issues in other.test_embind which were not caught before. See #2335. | |||
2014-05-05 | export SAFE_FT_MASK in non-fastcomp, to fix some asm validation errors | Alon Zakai | |
2014-05-05 | Added first version of tools/ffdb.py, an application that can be used to ↵ | Jukka Jylänki | |
operate Firefox OS devices from the command line. | |||
2014-05-04 | add more slack to glgears reftests | Alon Zakai | |
2014-05-03 | add f0 in non-fastcomp when needed | Alon Zakai | |
2014-05-03 | emit a global const for Math_fround(0) to avoid function call overheads in ↵ | Alon Zakai | |
the fround polyfill | |||
2014-05-02 | handle floats in jsCall properly; fixes asm2f.test_embind_2 | Alon Zakai | |
2014-05-02 | use a case-insensitive regex in strptime; fixes #2324 | Alon Zakai | |
2014-05-02 | document and assert on only one browser main loop at a time | Alon Zakai | |
2014-05-02 | switch other.test_embind to fastcomp and only ASM_JS | Alon Zakai | |
2014-05-02 | Merge pull request #2330 from juj/fs-tracking | juj | |
fs-tracking | |||
2014-04-30 | Merge pull request #2327 from chadaustin/embind-asmjs-precise-f32 | Alon Zakai | |
Fix embind/asm.js in PRECISE_F32 mode | |||
2014-04-30 | fix return code when precompiling headers | Alon Zakai | |
2014-04-30 | disable test_sscanf_hex in s_x_x | Alon Zakai | |
2014-04-30 | allow registerizeHarder with outlining | Alon Zakai | |
2014-04-30 | Add unit test for FS.trackingDelegate operation. | Jukka Jylänki | |
2014-04-30 | Rename FS tracking delegate did* to on* as suggested in ↵ | Jukka Jylänki | |
https://github.com/kripken/emscripten/pull/1673 . | |||
2014-04-29 | fix embind/asm.js in PRECISE_F32 mode | Chad Austin | |
2014-04-29 | testcase for fastcomp issue 32 | Alon Zakai | |
2014-04-29 | support h and hh in sscanf, and fix non-i32 case in hex sscanf; fixes #2322 | Alon Zakai | |
2014-04-29 | Merge pull request #2326 from polymeris/incoming | Alon Zakai | |
Bind std::basic_string<unsigned char> to js strings based on incoming | |||
2014-04-29 | support -o with precompiled headers; fixes #2320 | Alon Zakai | |
2014-04-29 | do not exit runtime if safeSetTimeout|Interval are called | Alon Zakai | |
2014-04-29 | Add myself to AUTHORS | Camilo Polymeris | |
2014-04-29 | fix polymeris's tests | Chad Austin | |
2014-04-29 | Bind std::basic_string<unsigned char> to js strings | Camilo Polymeris | |
2014-04-29 | remove unneeded code | Alon Zakai | |
2014-04-29 | revert 2ad1070/#2297 due to errors, until we figure out the right solution; ↵ | Alon Zakai | |
see also #2310 | |||
2014-04-29 | fix bug where we tried to emit switches in fused multiples, which led to ↵ | Alon Zakai | |
labels on ifs in some cases; fixes #2302 | |||
2014-04-29 | Merge pull request #2306 from juj/detailed_safe_heap | Alon Zakai | |
More detailed SAFE_HEAP. | |||
2014-04-29 | Wrapped the delegate calls in exception handlers so the exceptions | Michael J. Bishop | |
would be reported, but not bubble up and be caught by the callers of the FS methods since the callers will interpret those as problems with the FS code and report them as such (which is very confusing). Also removed the "willClose" call as I don't use it. | |||
2014-04-29 | Added support for moving paths. | Michael J. Bishop | |
Removed specific callbacks for directories and files, opting instead for callbacks that apply to generic paths. | |||
2014-04-29 | Added support for file tracking being used to track when | Michael J. Bishop | |
a file has been written to. | |||
2014-04-29 | Added file closing to the list of tracked events. | Michael J. Bishop | |
2014-04-29 | Added FileSystem tracking Support. | Michael Bishop | |
2014-04-29 | Improve SAFE_HEAP assertion messages to be more informative out of the box. | Jukka Jylänki | |
2014-04-25 | support disabling ALIASING_FUNCTION_POINTERS in fastcomp | Alon Zakai | |