Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-09-09 | prevent <sys/select.h> from being included multiple times | Mokhtar Naamani | |
2012-08-14 | add TCP and UDP to net/netinet/in.h | Alon Zakai | |
2012-07-21 | emscripten_push_uncounted_main_loop_blocker | Alon Zakai | |
2012-07-21 | improve emscripten_push_main_loop_blocker definition | Alon Zakai | |
2012-07-21 | name main loop blockers | Alon Zakai | |
2012-07-20 | warning on emscripten_push_main_loop_blocker | Alon Zakai | |
2012-07-20 | even better main loop blockers progress reporting | Alon Zakai | |
2012-07-20 | better main loop blockers progress reporting | Alon Zakai | |
2012-07-13 | add some EMSCRIPTEN comments for the last merge | Alon Zakai | |
2012-07-13 | Merge pull request #497 from imvu/c++11 | Alon Zakai | |
Fix C++11 support in libcxx | |||
2012-07-13 | emscripten_push_main_loop_blocker improvements | Alon Zakai | |
2012-07-12 | emscripten_push_main_loop_blocker | Alon Zakai | |
2012-07-03 | Fix C++11 support in libcxx | Chad Austin | |
2012-06-22 | misc library additions/fixes | Alon Zakai | |
2012-06-21 | Implementation for emscripten_async_wget | Aleksander Guryanov | |
2012-06-15 | fix emscripten_async_call for native builds with multiple files | Alon Zakai | |
2012-06-15 | move emscripten.h to emscripten/emscripten.h, so native builds can -I that ↵ | Alon Zakai | |
dir and not get anything else | |||
2012-06-14 | EMSCRIPTEN_KEEPALIVE | Alon Zakai | |
2012-06-12 | emscripten_random | Alon Zakai | |
2012-06-05 | Added a helper function emscripten_set_canvas_size function which allows to ↵ | Jukka Jylänki | |
resize the <canvas> element on the web page in 'generic' fashion without having to depend on SDL or X11 headers in C code. This function is intended to be used in conjunction with EGL to specify a custom pixel resolution for the canvas (EGL API does not have expressiveness to do arbitrary pixel sizes). | |||
2012-05-15 | fix test_gc for o1 and o2 | Alon Zakai | |
2012-05-15 | working early gc test | Alon Zakai | |
2012-05-15 | further gc work, basic api written | Alon Zakai | |
2012-05-15 | initial work on c++ gc support | Alon Zakai | |
2012-05-14 | emscripten_get_now | Alon Zakai | |
2012-05-10 | emscripten_hide_mouse | Alon Zakai | |
2012-05-08 | header additions for xmlvm | Alon Zakai | |
2012-05-06 | emscripten_pause_main_loop and resume | Alon Zakai | |
2012-05-02 | remove unneeded libcxx makefile line for readme | Alon Zakai | |
2012-05-01 | use requestAnimationFrame | Alon Zakai | |
2012-04-24 | sys/types.h header fix for some systems where local includes make them fail ↵ | Alon Zakai | |
on redefinitions | |||
2012-04-19 | add emscripten_async_run_script | Alon Zakai | |
2012-04-17 | add emscripten_async_call | Alon Zakai | |
2012-04-16 | restore 2 constants in sys/ioctl.h | Alon Zakai | |
2012-04-16 | Add a bunch of defines needed to get socket based applications to compile | Ehsan Akhgari | |
2012-04-08 | pty.h | Alon Zakai | |
2012-04-07 | sys/ioctl.h | Alon Zakai | |
2012-04-02 | fix test_glgears | Alon Zakai | |
2012-04-02 | Merge remote-tracking branch 'behdad/master' into behdad | Ehsan Akhgari | |
Conflicts: src/library_gl.js | |||
2012-03-31 | add X headers | Alon Zakai | |
2012-03-28 | do not use impure stuff for stdin etc, it makes comparing to native builds ↵ | Alon Zakai | |
harder | |||
2012-03-27 | Don't define u_int64_t and similar types twice | Behdad Esfahbod | |
They are already typedef'ed earlier in the file. This breaks emcc on my Mac at least. This was broken by f4018dfb. | |||
2012-03-24 | SDL mouse support and emscripten_set_main_loop | Alon Zakai | |
2012-03-23 | alter SDL scancode mask, to help older SDL apps work | 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-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 | add SDL_gfxPrimitives.h | Alon Zakai | |
2012-03-19 | add SDL mixer and ttf headers | Alon Zakai | |
2012-03-19 | headers fix | Alon Zakai | |
2012-03-16 | tweak building of libcxx to work around windows failure | Alon Zakai | |