Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-03-21 | typo on directory generation code | Alon Zakai | |
2012-03-21 | fix some bugs with preloading of entire directories | 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 | 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-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 | nicer debug output in emcc | 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 | emcc 'just copy' should do nothing if there is no target | 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 | preload/embed file compression option in emcc | Alon Zakai | |
2012-03-16 | source code compression option in emcc | 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-15 | preload images for SDL | Alon Zakai | |
2012-03-15 | support files in directories in --embed-file and --preload-file | Alon Zakai | |
2012-03-15 | add file preloading in browsers | Alon Zakai | |
2012-03-15 | add conftest.c workaround in emcc | Alon Zakai | |
2012-03-11 | helpful comment about necessary suffixes for emcc | Alon Zakai | |
2012-03-07 | improve emcc input finding so that it ignores -MT x | Alon Zakai | |
2012-03-06 | Merge pull request #294 from LCID-Fire/error_fix | Alon Zakai | |
Catch and log the errors when calling Processes | |||
2012-03-05 | Remove unnecessary accessing of stdout | LCID Fire | |
2012-03-03 | .o .bc comment | Alon Zakai | |
2012-03-01 | don't run optimizeShiftsAggressive without relooping, since it assumes ↵ | Alon Zakai | |
non-switch structures | |||
2012-03-01 | Catch and log the errors when calling Processes because users don't get any ↵ | LCID Fire | |
clue to what failed. | |||
2012-02-27 | EMCC_CFLAGS support | Alon Zakai | |
2012-02-27 | emcc fix | Alon Zakai | |
2012-02-26 | --pre-js and --post-js options | Alon Zakai | |
2012-02-26 | emcc help | Alon Zakai | |
2012-02-24 | --ignore-dynamic-linking option in emcc | Alon Zakai | |
2012-02-24 | --embed-file option in emcc | Alon Zakai | |
2012-02-23 | support -L/-l syntax in emcc | Alon Zakai | |
2012-02-22 | use libcxxabi for dynamic_cast | Alon Zakai | |
2012-02-17 | use aggressive shift optimizations, small but significant speedups on ↵ | Alon Zakai | |
fannkuch and skinning | |||
2012-02-15 | fix test_cases | Alon Zakai | |
2012-02-15 | handle singleton .a files | Alon Zakai | |
2012-02-15 | support compiling .so files directly in emcc | Alon Zakai | |
2012-02-09 | Fix a typo | Ehsan Akhgari | |
2012-02-09 | Fix the usage of temp_file in one location | Ehsan Akhgari | |
2012-02-08 | Preserve the extension of shared libraries as well | Ehsan Akhgari | |
2012-02-08 | Use ld for linking multiple files passed to emcc | Ehsan Akhgari | |
2012-02-08 | Use llvm-ar instead of llvm-link in emar | Ehsan Akhgari | |
This makes the semantics of emar to be the same as the semantics of system ar. | |||
2012-02-04 | remove warning on relooper slowness - it is reasonably fast at this point | Alon Zakai | |
2012-02-03 | Merge pull request #214 from ehsan/suffixes | Alon Zakai | |
Add the so and dll suffixes as bitcode suffixes as well | |||
2012-02-03 | Add the so and dll suffixes as bitcode suffixes as well | Ehsan Akhgari | |
2012-02-03 | enable full optimizations with bindings generator | Alon Zakai | |