aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-04-07Merge pull request #2256 from juj/more_musl1.14.1Alon Zakai
More musl.
2014-04-07Add JavaScript implementation of musl architecture-specific instructions.Jukka Jylänki
2014-04-07Merge pull request #1464 from abergmeier/emcmakejuj
Introduced wrapper emcmake
2014-04-03fix other.test_implicit_funcAlon Zakai
2014-04-03Merge pull request #2232 from abergmeier/empkg_prerequisitesAlon Zakai
Empkg prerequisites
2014-04-03Apply requested formatting changes.Andreas Bergmeier
2014-04-03Add valid_abspath option to emcc --help.Andreas Bergmeier
2014-04-02add missing test file for #2263 / #2258Alon Zakai
2014-04-02Merge pull request #2270 from prixeus/incomingAlon Zakai
GLFW: fix mouse button ordering and added/fixed some glfw button codes
2014-04-02- fix mouse button orderingprixeus
- added/fixed some glfw button codes - added myself to AUTHORS - unified the comments and else statements
2014-04-01fix mkdir on a path ending in a slash; fixes #2263 and #2258Alon Zakai
2014-03-31testcase for returning nanAlon Zakai
2014-03-31Merge pull request #2264 from imvu/incoming-with-fastcomp-asm.js-emval-2Alon Zakai
Make emscripten::val compatible with fastcomp/asm.js
2014-03-31testcase for fixable bad function casts with extra paramsAlon Zakai
2014-03-31Remove 'vararg' from names of functions, per code review. Don't expand ↵Chad Austin
floats to doubles in argument packs.
2014-03-31commentAlon Zakai
2014-03-31add testing for EM_ASM_ARGSAlon Zakai
2014-03-31update test_idbfs_sync to use EM_ASM with input arguments, which is more ↵Alon Zakai
idiomatic
2014-03-31better error handling in EM_ASMAlon Zakai
2014-03-31add EM_ASM_ARGS, a nicer name for EM_ASM_Alon Zakai
2014-03-30Add test for warning about abspath and selectively disabling it.Andreas Bergmeier
2014-03-29Follow up from azakai's code reviewChad Austin
2014-03-28Instead of varargs, which depend on the compiler, manually build the varargs ↵Chad Austin
packs on the stack.
2014-03-28Make val::val(T&&) compatible with asm.jsChad Austin
2014-03-28Make val::operator() compatible with asm.jsChad Austin
2014-03-28Rename readValueFromPointer to readValueFromVarArg to make its sometimes odd ↵Chad Austin
behavior a little clearer
2014-03-28Make val::call<> compatible with asm.jsChad Austin
2014-03-28Fix passing memory_views in varargsChad Austin
2014-03-28Allow passing memory_views in varargsChad Austin
2014-03-28Some minor emval simplificationsChad Austin
2014-03-28It appears we can use doubles as generic wire types.Chad Austin
2014-03-28make val::new_ compatible with asm.jsChad Austin
2014-03-28make val::as<> compatible with asm.jsChad Austin
2014-03-28tests for val::as on strings and val tooChad Austin
2014-03-28Add some unit tests that verify we can pass all kinds of primitive types ↵Chad Austin
through val::as
2014-03-29Bump version to 1.14.1 after updates to musl libc functions.Jukka Jylänki
2014-03-29Skip s_0_0.test_strndup, s_0_0.test_strstr, s_0_0.test_unistd_ttyname tests ↵Jukka Jylänki
since new musl libc string functions optimize by assuming being able to alias types in load-store operations.
2014-03-28Merge pull request #2262 from juj/fix_js_engine_filteringAlon Zakai
Fix test runner banned engine filtering for SPIDERMONKEY_ENGINE.
2014-03-28Fix test runner banned engine filtering for SPIDERMONKEY_ENGINE when cmdline ↵Jukka Jylänki
params are automatically added to that engine.
2014-03-28Fix test_strndup. The signature of strndup takes in a size_t for length, so ↵Jukka Jylänki
passing -1 is equivalent to passing 0xFFFFFFFF, which means the whole string will get duplicated, and the old handwritten implementation had a bug.
2014-03-28Migrate to using musl 0.9.13 strtok and strtok_r for better asm.js performance.Jukka Jylänki
2014-03-28Migrate to using musl 0.9.13 strpbrk for better asm.js performance.Jukka Jylänki
2014-03-28Migrate to using musl 0.9.13 strdup and strndup for better asm.js performace.Jukka Jylänki
2014-03-28Migrate to using musl 0.9.13 strchr, strrchr, index and rindex for better ↵Jukka Jylänki
asm.js performance.
2014-03-28Migrate to using musl 0.9.13 strstr for better asm.js performance.Jukka Jylänki
2014-03-28Migrate to using musl 0.9.13 strnlen for better asm.js performance.Jukka Jylänki
2014-03-28Migrate to using musl 0.9.13 memchr for better asm.js performance.Jukka Jylänki
2014-03-28Migrate to using musl 0.9.13 strncat for better asm.js performance.Jukka Jylänki
2014-03-28Migrate to using musl 0.9.13 stpcpy for better asm.js performance.Jukka Jylänki
2014-03-28Migrate to using musl 0.9.13 strspn and strcspn for better asm.js performance.Jukka Jylänki