Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-11-19 | statvfs.h additions | Alon Zakai | |
2012-11-19 | fcntl additions | Alon Zakai | |
2012-11-19 | limits.h additions | Alon Zakai | |
2012-11-19 | add dlfcn constant | Alon Zakai | |
2012-11-16 | print out hexadecimal 64-bit values properly, and fix some bugs with ↵ | Alon Zakai | |
I64_PRECISE mode 2; fixes #716 | |||
2012-11-16 | add PRECISE_I64_MATH mode 2, to force inclusion of i64 code even when we ↵ | Alon Zakai | |
can't tell at compile time it is needed. helps with #716 | |||
2012-11-16 | update heap exports when enlarging memory; fixes #713 | Alon Zakai | |
2012-11-16 | remove unneeded assertion | Alon Zakai | |
2012-11-15 | cache isType calls | Alon Zakai | |
2012-11-15 | optimize isPossiblyFunctionType and use it more | Alon Zakai | |
2012-11-15 | emit libraries and globals in pre phase, which needs to parse globals ↵ | Alon Zakai | |
anyhow, and avoid overhead of libraries in func phases | |||
2012-11-15 | optimize token closing brace check | Alon Zakai | |
2012-11-15 | use test in makeToken as a minor optimization | Alon Zakai | |
2012-11-15 | prevent annoying warnings during relooper bootstrapping | Alon Zakai | |
2012-11-15 | return error code on no input files | Alon Zakai | |
2012-11-15 | Explicitly pass the emscripten compiler file suffixes to cmake on Windows to ↵ | Jukka Jylänki | |
fix cmake em++ invocation on Windows Vista. | |||
2012-11-14 | clean up test.ll | Alon Zakai | |
2012-11-14 | adjust emscrip parallelization heuristics | Alon Zakai | |
2012-11-14 | Python system command line may come with untrimmed items at least on Windows ↵ | Jukka Jylänki | |
Vista, cmake is bad at producing these, so trim off the excessive spaces before working on the command line. Fixes other.test_cmake on Windows Vista build bot. | |||
2012-11-14 | Fix typo in WindowsPopen.kill(). Avoid using returncode variable manually, ↵ | Jukka Jylänki | |
but just route through poll() instead. | |||
2012-11-14 | Refactor Windows replacement for Popen to allow passing stdin to Popen ↵ | Jukka Jylänki | |
process, and poll() and kill(). Fixes tests other.test_fix_closure and other.test_warn_undefined on Windows. | |||
2012-11-14 | Implement missing used functions on MockPopen to pass Windows tests ↵ | Jukka Jylänki | |
utilizing timeout_run(). | |||
2012-11-13 | optimize writing in emscripten.py | Alon Zakai | |
2012-11-13 | only save temp files in EMCC_DEBUG_SAVE mode | Alon Zakai | |
2012-11-13 | forward -v to child processes | Alon Zakai | |
2012-11-13 | Merge pull request #710 from juj/cmake | Alon Zakai | |
Try to locate emcc in cmake based on the cmake toolchain directory struc... | |||
2012-11-13 | replace unicode with bit pattern in test_strcmp_uni, should fix #708 | Alon Zakai | |
2012-11-13 | assert our tests do not leave .ll's behind | Alon Zakai | |
2012-11-14 | Try to locate emcc in cmake based on the cmake toolchain directory structure ↵ | Jukka Jylänki | |
to avoid having to set EMSCRIPTEN environment variable on unix. Remove the temporary workaround for other.test_cmake, which shouldn't now be needed. | |||
2012-11-13 | clean up temp .ll files in child processes | Alon Zakai | |
2012-11-13 | temporary fix for test_cmake | Alon Zakai | |
2012-11-13 | fix temp dir leaks in sanity checks. #706 | Alon Zakai | |
2012-11-13 | Merge pull request #703 from juj/cmake | Alon Zakai | |
Cmake support. | |||
2012-11-13 | disable headless test without spidermonkey | Alon Zakai | |
2012-11-13 | glVertex2fv, +tests | Alon Zakai | |
2012-11-13 | headless option | Alon Zakai | |
2012-11-13 | Rename CallProcess to call_process. | Jukka Jylänki | |
2012-11-12 | handle byval varargs; fixes #705 | Alon Zakai | |
2012-11-12 | zoomSurface support; fixes #673 | Alon Zakai | |
2012-11-12 | make Module.run accessible through closure also in pre and post-js (#704) | Alon Zakai | |
2012-11-12 | handle as best we can surprising types for legalized bitcasts. fixes #701 | Alon Zakai | |
2012-11-12 | remove broken assertion, should fix #682 | Alon Zakai | |
2012-11-12 | Update cmake scripts. | Jukka Jylänki | |
2012-11-12 | On Windows, depending on the version of make, these calls have been observed ↵ | Jukka Jylänki | |
to fail with a "WindowsError: [Error 6] The handle is invalid", so be loud about it when this occurs. For more information, see http://bugs.python.org/issue3905 . Implement a workaround to Popen to avoid this issue. | |||
2012-11-12 | Update test_cmake to invoke proper cmake toolchain file, and produce error ↵ | Jukka Jylänki | |
output to console. | |||
2012-11-12 | Make separate cmake files for unix and windows cmake toolchains. On Windows, ↵ | Jukka Jylänki | |
specifying the absolute path to emcc causes cmake to fail. On Linux, one must specify absolute path to emcc, or cmake fails. Moreover, since this is a toolchain file that is describing the system, no cmake variables seem to be available to query the platform, so make these separate. | |||
2012-11-12 | Don't silently suppress received exceptions inside shared.building.is_ar and ↵ | Jukka Jylänki | |
shared.building.is_bitcode functions, but print information about them before returning False. On Windows, depending on the version of make, these calls have been observed to fail with a "WindowsError: [Error 6] The handle is invalid", so be loud about it when this occurs. For more information, see http://bugs.python.org/issue3905 . | |||
2012-11-12 | Don't pass all emcc command line inputs e.g. those of form '-DsomeDefine=1' ↵ | Jukka Jylänki | |
etc. to shared.Building.is_ar() for testing whether a file by that name is a LLVM archive file. | |||
2012-11-12 | Added cmake toolchain file for Emscripten and a other.test_cmake to tests ↵ | Jukka Jylänki | |
its functionality. | |||
2012-11-11 | alter version to bootstrap relooper1.0.1a | Alon Zakai | |