aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-09-13Bump version for new libc headers.1.5.7Bruce Mitchener
2013-09-13Provide better impl of __assert_fail().Bruce Mitchener
2013-09-13Fix fpclassify with musl libc headers.Bruce Mitchener
musl defines __fpclassify, __fpclassifyf, __fpclassifyl while the old headers used __fpclassifyd for double rather than __fpclassify.
2013-09-13Add __va_copy as a compat/stdarg.hBruce Mitchener
2013-09-13Fix time tests.Bruce Mitchener
2013-09-13Fix other.test_embind & other.test_static_link.Bruce Mitchener
2013-09-13Update to work with new libc headers.Bruce Mitchener
2013-09-13Update libc headers to use musl headers.Bruce Mitchener
2013-09-12try to use console.log even in workersAlon Zakai
2013-09-12do not switchify illegally-typed switchesAlon Zakai
2013-09-12Module.logReadFiles optionAlon Zakai
2013-09-12update other.test_js_optimizerAlon Zakai
2013-09-11abort registerize at the proper early time when we need toAlon Zakai
2013-09-11we only allow 1 exported variable from inline js; #1613Alon Zakai
2013-09-11Merge pull request #1613 from juj/inline_asm_testcaseAlon Zakai
inline_asm_testcase
2013-09-11disable registerize when seeing inline js in non-asm mode, as we do not ↵Alon Zakai
protect it from replacements there; fixes #1614
2013-09-11test FORCE_ALIGNED_MEMORY in bullet only in configure mode, not cmakeAlon Zakai
2013-09-11build both configure and cmake versions of bullet, so the cache does not mix ↵Alon Zakai
them up; #1610
2013-09-11better comment on inline js in asm.jsAlon Zakai
2013-09-11Merge pull request #1610 from juj/fix_bulletAlon Zakai
Fix bullet
2013-09-11Merge pull request #1608 from juj/validate_asmjsAlon Zakai
Validate asmjs
2013-09-11better assertion message for corruption checker and asmAlon Zakai
2013-09-11listen to blur on the window, not the document, so chrome worksAlon Zakai
2013-09-11Skip asm2x86.test_utf32 since test_utf32 uses inline asm.Jukka Jylänki
2013-09-11Add new unit test for inline asm syntax passing through input variables to ↵Jukka Jylänki
output variables.
2013-09-11Fix test_the_bullet on Windows. Closes #696. Related to #681. On Windows, ↵Jukka Jylänki
use cmake to configure bullet build instead of ./configure. On Linux and OSX, run both configure and cmake-based tests.
2013-09-11Use SPIDERMONKEY_ENGINE from ~/.emscripten in validate_asmjs.py as the ↵Jukka Jylänki
primary source for locating SpiderMonkey. If it was not set appropriately, look from PATH.
2013-09-11Use em_validate_asmjs_after_build() in CMake test.Jukka Jylänki
2013-09-11Add CMake helper function em_validate_asmjs_after_build() that adds an extra ↵Jukka Jylänki
post-build step to project to confirm that the build output is valid asm.js.
2013-09-11Add validate_asmjs.py tool to help unit-testing whether a build output is ↵Jukka Jylänki
proper asm.js or not.
2013-09-10add space to emcc debug outputAlon Zakai
2013-09-10handle flexible arrays at the end of structs, whose elements are themselves ↵Alon Zakai
structs; fixes #1602
2013-09-10Add support for marshalling UTF-16 strings to/from JS. Allows passing ↵Jukka Jylänki
wchar_t strings to JS when building with -fshort-wchar. Closes #1565.
2013-09-10Fix UTF-16 surrogate detection.Jukka Jylänki
2013-09-10Update utf32 test to contain non-BMP characters in the test string.Jukka Jylänki
2013-09-10Fix UTF32 <-> JS string conversion for non-BMP characters. Turns out JS ↵Jukka Jylänki
string functions .length, .charCodeAt and .fromCharCode do not operate on Unicode code points, but UTF-16-encoded Unicode code units.
2013-09-10Rename utf32<->jsstring marshalling functions to UTF32ToString and ↵Jukka Jylänki
stringToUTF32 following azakai's suggestion on naming convention.
2013-09-10Skip test_utf32 when on s_0_x since they don't link in libc, and the code ↵Jukka Jylänki
relies on wcslen().
2013-09-10Add functions for marshalling wchar_t (which is fixed 32-bit UTF32LE on ↵Jukka Jylänki
Unix) strings to and from JS, and add a test.
2013-09-10Merge pull request #1605 from juj/mingw32make_nmake_cmakeAlon Zakai
Mingw32make nmake cmake
2013-09-10EMCC_STDERR_FILE option, to log stderr in js compiler to a fileAlon Zakai
2013-09-10remove no longer necessary preventDefaultAlon Zakai
2013-09-10fix preventDefault being called after event has been replacedAlon Zakai
2013-09-10Remove Hello_Triangle_KD project from msvc tests, since it depends on ↵Jukka Jylänki
nonexisting OpenKode.
2013-09-10Remove the use of solution folders in msvc10 tests, since that feature is ↵Jukka Jylänki
not supported in VS Express.
2013-09-10Add missing 'if WINDOWS' in CMake toolchain handling code.Jukka Jylänki
2013-09-10Fix indentation in Building.which() function.Jukka Jylänki
2013-09-10Update docs on test.Jukka Jylänki
2013-09-10Fix previous merge.Jukka Jylänki
2013-09-10Skip nmake test in test_cmake on Windows if PATH doesn't have nmake set up.Jukka Jylänki