aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-06-18Merge pull request #1304 from int3/sdlAlon Zakai
Fix SDL color encoding
2013-06-18Missed out making some tests portable.Jez Ng
2013-06-18post messages to crunch worker with a new arrayBuffer, to avoid copying an ↵Alon Zakai
underlying one
2013-06-18Merge pull request #1307 from int3/node-version-updateAlon Zakai
Update minimum node version to v0.8.
2013-06-18reduce error to warning on having no functionsAlon Zakai
2013-06-18Update minimum node version.Jez Ng
2013-06-18disable new test_varargs in x86 (requires le32 now)Alon Zakai
2013-06-18Merge pull request #1301 from Manny-MADE/va_lists_fixAlon Zakai
BUGFIX: lists cannot be copied as "llvm_va_copy" was broken, didn't copy list offset
2013-06-18add wip inlinejs2 testAlon Zakai
2013-06-18do not do full Browser.init() in workers, just the minimum we needAlon Zakai
2013-06-18do not use EMCC_OPTIMIZE_NORMALLY in relooperAlon Zakai
2013-06-18Fix 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-18CHANGED: using spaces instead of tabs to match project codestylemanny/MADE
2013-06-18CHANGED: using spaces instead of tabs to match project codestylemanny/MADE
2013-06-18CHANGED: added myself to AUTHORSmanny/MADE
2013-06-18ADDED: test to ensure va_lists work properly when copied, reinitialized etc.manny/MADE
2013-06-18IMPROVED: va_list offset is not hardcoded, added commentsmanny/MADE
2013-06-18BUGFIX: lists cannot be llvm_va_copy was broken, didn't copy list offsetmanny/MADE
2013-06-17Make 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-17Fix 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-17improve inline js testAlon Zakai
2013-06-17Merge pull request #1281 from juj/noninput_cmdline_optsAlon Zakai
Improve emcc input file detection to ignore all arguments that precede a...
2013-06-17Merge pull request #1280 from juj/abs_path_checkAlon Zakai
Improve absolute path warning detection to work on Windows, and make the...
2013-06-17Implement strnlen.David Barksdale
2013-06-17Added test for float.h agreeing with sizeof.David Barksdale
2013-06-17Fix LDBL_ constants in float.h.David Barksdale
This fixes a bug compiling libunistring which checks these constants against sizeof(long double).
2013-06-17Merge pull request #1303 from inolen/warn_symbolAlon Zakai
Fix warn alias
2013-06-17Merge pull request #1288 from juj/dont_package_hidden_filesAlon Zakai
Report debug diagnostics in file packager if EMCC_DEBUG=1. Make file pac...
2013-06-18Rename emcc_debug to DEBUG in tools/file_packager.py to be consistent.Jukka Jylänki
2013-06-17Merge pull request #1286 from michaeljbishop/looping-audio-testAlon Zakai
Added test for SDL_Mix that includes looping audio.
2013-06-17Merge pull request #1283 from juj/SDL_CreateRGBSurfaceFromAlon Zakai
Don't throw when SDL_CreateRGBSurfaceFrom is called, but at least give a...
2013-06-17v 1.5.01.5.0Alon Zakai
2013-06-17assert on Root being non-NULL in the relooperAlon Zakai
2013-06-17enable all debug logging in emcc -vAlon Zakai
2013-06-17fix weak alias for warnAnthony Pesch
2013-06-16Merge pull request #1282 from juj/sdl_addtimerAlon Zakai
Fix SDL_AddTimer dyncall signature. The timer callback is of form 'typed...
2013-06-16Merge pull request #1284 from juj/SDL_WM_SetIconAlon Zakai
Add no-op SDL_WM_SetIcon.
2013-06-16add some dirent defines, fixes #1277Alon Zakai
2013-06-13do not eliminate dead code in EXPORT_ALLAlon Zakai
2013-06-13Report 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-13Added test for SDL_Mix that includes looping audio.Michael Bishop
The test demonstrates that looping produces gaps in the sound.
2013-06-13Add no-op SDL_WM_SetIcon.Jukka Jylänki
2013-06-13Don't throw when SDL_CreateRGBSurfaceFrom is called, but at least give an ↵Jukka Jylänki
uninitialized surface.
2013-06-13Fix SDL_AddTimer dyncall signature. The timer callback is of form 'typedef ↵Jukka Jylänki
Uint32 (SDLCALL * SDL_TimerCallback) (Uint32 interval, void *param);'.
2013-06-13Improve 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-13Improve absolute path warning detection to work on Windows, and make the ↵Jukka Jylänki
warning message more informative.
2013-06-10coerce output of integer modulus, since x%0 is NaN, which is not an integerAlon Zakai
2013-06-10rename int because closure hates itAlon Zakai
2013-06-10comment on not inlining for setjmpAlon Zakai
2013-06-10fix test_relooperAlon Zakai