Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-03-20 | don't override Module.arguments if already provided | Alon Zakai | |
2012-03-20 | Merge pull request #312 from SiggyBar/incoming | Alon Zakai | |
Misc fixes for Windows. | |||
2012-03-20 | emcc help on --pre and --post-js | Alon Zakai | |
2012-03-20 | avoid stack explosion in ccall | Alon Zakai | |
2012-03-20 | One more Windows fix. | Sigmund Vik | |
This file was missing in previous commit. | |||
2012-03-20 | Misc fixes for Windows. | Sigmund Vik | |
Most of these changes have to do with how python scripts are invoked. For Linux, 'Popen([EMCC] + args)' works because the first line in emcc is '#!/usr/bin/env python'. On Windows, the python interpreter has to be explicitly invoked, e.g. 'Popen(['python', EMCC] + args)'. Note that there is no harm in explicitly invoking the python interpreter on Linux, so this works on both platforms. For Windows, execvp() behaves differently than on Linux: http://mail.python.org/pipermail/python-list/2002-July/763863.html http://msdn.microsoft.com/en-us/library/3xw6zy53.aspx This causes many strange things to happen as the parent process terminated before its children. In this change the use of execvp() has been replaced with subprocess.call(). This change also fixes some code that assumed that the path separator always is '/', but for Windows it is '\'. And where the path module can be required, we use path.normalize() and path.resolve() to check if a filename is absolute in a platform agnostic manner. | |||
2012-03-20 | Coffee-script fix for new node.js | Sigmund Vik | |
This has already been fixed upstream, so maybe a better fix is to pull in the latest version of coffee-script. For more details, please see: https://github.com/jashkenas/coffee-script/pull/1807 | |||
2012-03-20 | Renamed __except to __exceptXXX in libcxx/ios header to avoid compilation | Sigmund Vik | |
errors on windows using clang version 3.0 (tags/RELEASE_30/final). This can be reverted once emscripten upgrades to clang 3.1. For more details, please see: http://comments.gmane.org/gmane.comp.compilers.clang.scm/41578 | |||
2012-03-19 | more SDL stuff | Alon Zakai | |
2012-03-19 | two SDL mixer stubs | Alon Zakai | |
2012-03-19 | add SDL_gfxPrimitives.h | Alon Zakai | |
2012-03-19 | add SDL mixer and ttf headers | Alon Zakai | |
2012-03-19 | fix test_emcc_multifile | Alon Zakai | |
2012-03-19 | define -DEMSCRIPTEN even when just configuring, so bundled headers work | Alon Zakai | |
2012-03-19 | headers fix | Alon Zakai | |
2012-03-19 | nicer debug output in emcc | Alon Zakai | |
2012-03-19 | Module.read closure fix | Alon Zakai | |
2012-03-19 | remove .compress if the compress wasn't worth it | Alon Zakai | |
2012-03-19 | do compression of downloaded code+datafiles in a worker | Alon Zakai | |
2012-03-19 | fix test_poppler | Alon Zakai | |
2012-03-19 | fix test_unistd_io | Alon Zakai | |
2012-03-19 | fix test_fs_base | Alon Zakai | |
2012-03-19 | update lzma.js | Alon Zakai | |
2012-03-19 | refactor use of this[..] in shell.js to use Module[..] | Alon Zakai | |
2012-03-19 | emcc 'just copy' should do nothing if there is no target | Alon Zakai | |
2012-03-17 | fix test_emcc_compressed_file | Alon Zakai | |
2012-03-17 | complete test for image compression | Alon Zakai | |
2012-03-17 | update lzma.js | Alon Zakai | |
2012-03-17 | fix bug with compressed images | Alon Zakai | |
2012-03-17 | unify data and image file preloading | Alon Zakai | |
2012-03-17 | refactor datafile code | Alon Zakai | |
2012-03-16 | modify lzma.js to just build natively for us here | Alon Zakai | |
2012-03-16 | show download number progress | Alon Zakai | |
2012-03-16 | preload/embed file compression option in emcc | Alon Zakai | |
2012-03-16 | source code compression option in emcc | Alon Zakai | |
2012-03-16 | updated lzma.js | Alon Zakai | |
2012-03-16 | add lzma.js in thirdparty | Alon Zakai | |
2012-03-16 | rename --compress to --minify in emcc | Alon Zakai | |
2012-03-16 | allow preloading/embedding of entire directories using emcc | Alon Zakai | |
2012-03-16 | tweak building of libcxx to work around windows failure | Alon Zakai | |
2012-03-15 | various files | Alon Zakai | |
2012-03-15 | remove unneeded SDL deps | Alon Zakai | |
2012-03-15 | preload images for SDL | Alon Zakai | |
2012-03-15 | comment | Alon Zakai | |
2012-03-15 | almost working SDL_image test, just need async decoding | Alon Zakai | |
2012-03-15 | support files in directories in --embed-file and --preload-file | Alon Zakai | |
2012-03-15 | html tests refactoring | Alon Zakai | |
2012-03-15 | allow monitoring of run dependencies | Alon Zakai | |
2012-03-15 | add file preloading in browsers | Alon Zakai | |
2012-03-15 | improve test runner http server to handle timeouts | Alon Zakai | |