Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-06-18 | Merge pull request #1304 from int3/sdl | Alon Zakai | |
Fix SDL color encoding | |||
2013-06-18 | Missed out making some tests portable. | Jez Ng | |
2013-06-18 | post messages to crunch worker with a new arrayBuffer, to avoid copying an ↵ | Alon Zakai | |
underlying one | |||
2013-06-18 | Merge pull request #1307 from int3/node-version-update | Alon Zakai | |
Update minimum node version to v0.8. | |||
2013-06-18 | reduce error to warning on having no functions | Alon Zakai | |
2013-06-18 | Update minimum node version. | Jez Ng | |
2013-06-18 | disable new test_varargs in x86 (requires le32 now) | Alon Zakai | |
2013-06-18 | Merge pull request #1301 from Manny-MADE/va_lists_fix | Alon Zakai | |
BUGFIX: lists cannot be copied as "llvm_va_copy" was broken, didn't copy list offset | |||
2013-06-18 | add wip inlinejs2 test | Alon Zakai | |
2013-06-18 | do not do full Browser.init() in workers, just the minimum we need | Alon Zakai | |
2013-06-18 | do not use EMCC_OPTIMIZE_NORMALLY in relooper | Alon Zakai | |
2013-06-18 | Fix bug in file_packager.py introduced in my recent pull request that caused ↵ | Jukka Jylänki | |
all files to be skipped from being packaged if the path contains a relative '.' in its path name (e.g. './path/etc'). | |||
2013-06-18 | CHANGED: using spaces instead of tabs to match project codestyle | manny/MADE | |
2013-06-18 | CHANGED: using spaces instead of tabs to match project codestyle | manny/MADE | |
2013-06-18 | CHANGED: added myself to AUTHORS | manny/MADE | |
2013-06-18 | ADDED: test to ensure va_lists work properly when copied, reinitialized etc. | manny/MADE | |
2013-06-18 | IMPROVED: va_list offset is not hardcoded, added comments | manny/MADE | |
2013-06-18 | BUGFIX: lists cannot be llvm_va_copy was broken, didn't copy list offset | manny/MADE | |
2013-06-17 | Make browser tests nicer to run. | Jez Ng | |
A bunch of misc changes, including fixing compile-time warnings, and muting the Python server request log. | |||
2013-06-17 | Fix SDL color encoding. | Jez Ng | |
Little-endian + RGBA means that red is located at the lowest-order bits, not the highest. The hello_world_sdl test is now portable, because we no longer write to individual bytes. We also add a test for a completely blank screen, which should be black, not red. Closes #1287, #761, #765. | |||
2013-06-17 | improve inline js test | Alon Zakai | |
2013-06-17 | Merge pull request #1281 from juj/noninput_cmdline_opts | Alon Zakai | |
Improve emcc input file detection to ignore all arguments that precede a... | |||
2013-06-17 | Merge pull request #1280 from juj/abs_path_check | Alon Zakai | |
Improve absolute path warning detection to work on Windows, and make the... | |||
2013-06-17 | Implement strnlen. | David Barksdale | |
2013-06-17 | Added test for float.h agreeing with sizeof. | David Barksdale | |
2013-06-17 | Fix LDBL_ constants in float.h. | David Barksdale | |
This fixes a bug compiling libunistring which checks these constants against sizeof(long double). | |||
2013-06-17 | Merge pull request #1303 from inolen/warn_symbol | Alon Zakai | |
Fix warn alias | |||
2013-06-17 | Merge pull request #1288 from juj/dont_package_hidden_files | Alon Zakai | |
Report debug diagnostics in file packager if EMCC_DEBUG=1. Make file pac... | |||
2013-06-18 | Rename emcc_debug to DEBUG in tools/file_packager.py to be consistent. | Jukka Jylänki | |
2013-06-17 | Merge pull request #1286 from michaeljbishop/looping-audio-test | Alon Zakai | |
Added test for SDL_Mix that includes looping audio. | |||
2013-06-17 | Merge pull request #1283 from juj/SDL_CreateRGBSurfaceFrom | Alon Zakai | |
Don't throw when SDL_CreateRGBSurfaceFrom is called, but at least give a... | |||
2013-06-17 | v 1.5.01.5.0 | Alon Zakai | |
2013-06-17 | assert on Root being non-NULL in the relooper | Alon Zakai | |
2013-06-17 | enable all debug logging in emcc -v | Alon Zakai | |
2013-06-17 | fix weak alias for warn | Anthony Pesch | |
2013-06-16 | Merge pull request #1282 from juj/sdl_addtimer | Alon Zakai | |
Fix SDL_AddTimer dyncall signature. The timer callback is of form 'typed... | |||
2013-06-16 | Merge pull request #1284 from juj/SDL_WM_SetIcon | Alon Zakai | |
Add no-op SDL_WM_SetIcon. | |||
2013-06-16 | add some dirent defines, fixes #1277 | Alon Zakai | |
2013-06-13 | do not eliminate dead code in EXPORT_ALL | Alon Zakai | |
2013-06-13 | Report debug diagnostics in file packager if EMCC_DEBUG=1. Make file ↵ | Jukka Jylänki | |
packager skip all path components that have a path starting with '.', like ('.git/xxx/yyy/'), or the filename starts with '.', or the file is a Win32 hidden file. Explicitly specified files on the command line are always packaged, even if they start with '.' or are hidden. Add unit tests to check that it works. | |||
2013-06-13 | Added test for SDL_Mix that includes looping audio. | Michael Bishop | |
The test demonstrates that looping produces gaps in the sound. | |||
2013-06-13 | Add no-op SDL_WM_SetIcon. | Jukka Jylänki | |
2013-06-13 | Don't throw when SDL_CreateRGBSurfaceFrom is called, but at least give an ↵ | Jukka Jylänki | |
uninitialized surface. | |||
2013-06-13 | Fix SDL_AddTimer dyncall signature. The timer callback is of form 'typedef ↵ | Jukka Jylänki | |
Uint32 (SDLCALL * SDL_TimerCallback) (Uint32 interval, void *param);'. | |||
2013-06-13 | Improve emcc input file detection to ignore all arguments that precede a GCC ↵ | Jukka Jylänki | |
preprocessor command line option from http://gcc.gnu.org/onlinedocs/gcc/Preprocessor-Options.html . | |||
2013-06-13 | Improve absolute path warning detection to work on Windows, and make the ↵ | Jukka Jylänki | |
warning message more informative. | |||
2013-06-10 | coerce output of integer modulus, since x%0 is NaN, which is not an integer | Alon Zakai | |
2013-06-10 | rename int because closure hates it | Alon Zakai | |
2013-06-10 | comment on not inlining for setjmp | Alon Zakai | |
2013-06-10 | fix test_relooper | Alon Zakai | |