https://github.com/kripken/emscripten

sort by:
Revision Author Date Message Commit Date
42fdcd5 version 1.7.5 12 November 2013, 22:50:15 UTC
57b8e5a ignore first L when demangling, literalness is irrelevant to the main name 12 November 2013, 16:47:49 UTC
1b031e0 refactor demangler 12 November 2013, 16:40:13 UTC
a3903de demangle constructors 12 November 2013, 16:31:11 UTC
93b48cd demangle new and delete 12 November 2013, 16:19:10 UTC
5137ee9 version 1.7.4 12 November 2013, 01:47:24 UTC
7b9ab8d Merge pull request #1774 from fadams/fix-getaddrinfo-null-hints Provided an implementation for gai_strerror and gave getaddrinfo sensibl... 12 November 2013, 01:46:49 UTC
c44237f fix joystick browser integration 12 November 2013, 01:44:47 UTC
9e17b54 version 1.7.3 12 November 2013, 01:40:43 UTC
d83b61b Merge branch 'sdl_joystick' of github.com:jvilk/emscripten into incoming 12 November 2013, 01:40:12 UTC
7e25db4 remove unnecessary ltoing in benchmark suite 11 November 2013, 23:52:34 UTC
117f357 Merge branch 'incoming' into f32 11 November 2013, 19:56:51 UTC
0ea99d4 remove asm1f from ALL 11 November 2013, 19:47:05 UTC
2182170 test suite changes for f32 landing: enable float32_precise in all modes, disable asm1f (rely on testing in float32_precise and fasta), and mark asm2f as permanent 11 November 2013, 19:29:47 UTC
0ba049d add option for precise f32 in benchmarks 11 November 2013, 18:59:55 UTC
9d00625 coerce to double before converting a float to an i64 11 November 2013, 18:59:18 UTC
fa0443e benchmark linpack in both float and double modes 11 November 2013, 18:41:01 UTC
1459082 Replaced loop in gai_strerror with writeAsciiToMemory call and made the comment around hopefully a little more descriptive 11 November 2013, 18:32:23 UTC
e238b7e minify in asm arg coercions that denormalizeAsm generates, to handle Math.fround calls 11 November 2013, 18:23:40 UTC
eb8172e minify in asm var definitions that denormalizeAsm generates, to handle Math.fround calls 11 November 2013, 18:06:29 UTC
37d0e6c use writeAsciiToMemory in library.js in more places 11 November 2013, 01:45:06 UTC
eed2f81 more precise float testing 10 November 2013, 19:34:32 UTC
04cb7d5 Merge pull request #1779 from juj/fix_test_lua_spaces Fix test_lua on Windows buildbot. 10 November 2013, 18:36:52 UTC
fb837ed Merge pull request #1778 from ToadKing/nanosleep-fix nanosleep - don't write to rmtp if it's NULL 10 November 2013, 18:21:40 UTC
28738eb Merge pull request #1780 from juj/gles2_less_throws throw() less in GLES2 usage. 10 November 2013, 18:17:41 UTC
74e4c26 Make GL library more spec conformant by not throwing exceptions on errors, but instead reporting them via glGetError() as the GLES2 spec says. Use the linker flag "-s GL_ASSERTIONS=1" to enable additional debug-time error logging from the GL layer for error reasons. 10 November 2013, 15:09:51 UTC
0d37bbe Fix Makefile in test_lua in the case when make is in a path that contains spaces (e.g. c:\program files\emscripten\...\mingw32-make). 10 November 2013, 12:50:11 UTC
1c7c811 nanosleep - don't write to rmtp if it's NULL 10 November 2013, 08:38:58 UTC
39b138d [SDL] Joystick API implementation using HTML5 Gamepad API Works in browsers that implement the working draft of the standard (current Chrome / Firefox stable): http://www.w3.org/TR/2012/WD-gamepad-20120529/#gamepad-interface ...and browsers that implement the editor's draft (current Firefox Nightly): https://dvcs.w3.org/hg/gamepad/raw-file/default/gamepad.html#idl-def-Gamepad Contains unit tests for both event types. 10 November 2013, 07:25:17 UTC
38a6435 bump EMSCRIPTEN_VERSION in tools/shared.py to 1.7.3 10 November 2013, 06:21:19 UTC
2b23ee3 Changed library.js line 7509 to use hint !== 0 test vice hint != 0 10 November 2013, 06:16:11 UTC
159315a add asm2f to ALL 10 November 2013, 03:34:30 UTC
d446e2b support inline asm comments; fixes #1766 10 November 2013, 00:18:50 UTC
473ab54 Merge pull request #1772 from juj/fix_test_asm_pgo_windows Fix test_asm_pgo on Windows. 09 November 2013, 22:46:06 UTC
c411404 make asm2f do full optimization, including minification 09 November 2013, 19:43:09 UTC
23d8911 Fix test_asm_pgo on Windows by using response files. The test failed by exceeding Windows command line length limitations, giving an error "WindowsError: [Error 87] The parameter is incorrect". Also extend the logging given by EM_BUILD_VERBOSE=3 to print out the compiler invokations. 09 November 2013, 18:58:48 UTC
d969c64 test both float and double in fasta 09 November 2013, 18:34:35 UTC
c94fbc8 optimize fround polyfill a tiny bit 09 November 2013, 18:34:06 UTC
6c9ebaf Merge pull request #1773 from juj/fix_test_lua Fix test_lua on Windows. 09 November 2013, 18:18:16 UTC
d420405 Math.* have no side effects 09 November 2013, 17:55:18 UTC
16a5d12 consolidate side effect checking code 09 November 2013, 17:29:34 UTC
e203c5b remove unneeded var 09 November 2013, 17:22:24 UTC
7f5c2de optimize hasSideEffects 09 November 2013, 17:21:25 UTC
7a3b033 fix ensureDot logic 09 November 2013, 17:16:12 UTC
ea7053a Provided an implementation for gai_strerror and gave getaddrinfo sensible default behaviour when hints is set to NULL. Ideally getaddrinfo should supply multiple addrinfo values when hints is NULL or ai_family is set to AF_UNSPEC but this is a somewhat more complex proposition 09 November 2013, 16:57:12 UTC
8ccb00a Fix test_lua on Windows when built using mingw32-make. That tool got confused by a '#' comment at the end of a command line, so move the comment to its own separate line. 09 November 2013, 16:03:25 UTC
11418ef emit proper large float constants when js opts are to be run 09 November 2013, 03:13:57 UTC
8d20a14 fix float/int bitcast optimization to recognize and preserve Math_fround 09 November 2013, 02:54:13 UTC
eb3ec20 fix registerize pass for float32 09 November 2013, 02:18:12 UTC
d041b0f initial work for float32 support in js optimizer 09 November 2013, 02:08:42 UTC
24c8ebb add asm2f test subsuite 09 November 2013, 02:08:39 UTC
b873dc7 Merge branch 'incoming' into f32 Conflicts: src/parseTools.js src/preamble.js 09 November 2013, 00:04:05 UTC
e0268fa Merge pull request #1767 from waywardmonkeys/update-libcxx Update libcxx 08 November 2013, 23:56:02 UTC
a112728 Merge branch 'master' of github.com:bobroberts177/emscripten into incoming 08 November 2013, 23:50:05 UTC
128ea80 Merge pull request #1761 from prenaux/develop GLUT support for DELETE & BACKSPACE keys ; Fixed lzma.js doit.sh so that it works on Windows ; Removed unnecessary warning in em++ ; 08 November 2013, 23:39:29 UTC
a25e972 Merge pull request #1764 from juj/name_more_functions Add more names for functions that show up in Firefox profiler as anonymous. 08 November 2013, 23:37:45 UTC
cca74d2 no-op for __builtin_prefetch; fixes #1765 08 November 2013, 23:36:58 UTC
36fddc0 Merge pull request #1768 from juj/gles2_func_stubs GLES2 func stubs. 08 November 2013, 23:32:30 UTC
c715cec invalidate calls on conditionals in js optimizer, to avoid eliminating into a non-executing code path 08 November 2013, 22:54:18 UTC
18036a4 Add self to AUTHORS 07 November 2013, 17:19:03 UTC
df185bf Implement GLES2 glShaderBinary and glReleaseShaderCompiler functions as no-op stubs. Add a machinery for glGetError() to report errors generated by the library_gl.js interop layer. 07 November 2013, 15:23:25 UTC
4259c8b Add more names for functions that show up in Firefox profiler as anonymous. 07 November 2013, 12:29:18 UTC
ad1da1e Bump version & regen symbols for libcxx. 07 November 2013, 09:08:19 UTC
8a8f034 Don't use atomic as that breaks our version of clang. 07 November 2013, 09:08:02 UTC
44af976 Update libcxx to 194185, 2013-11-07. This brings C++14 support. 07 November 2013, 09:07:18 UTC
7f870cf Merge pull request #1748 from caiiiycuk/fix_sdl_colors Fix SDL_SetColors && SDL_envets 06 November 2013, 19:56:14 UTC
6630752 Merge pull request #1743 from fadams/fix-nodejs-socket-client add support for node.js to act as a socket client 06 November 2013, 19:50:49 UTC
1e4e155 [thirdparty/lzma.js]: Fixed doit.sh so that it compiles on Windows using MingW's GCC & Bash ; 06 November 2013, 10:47:26 UTC
c4b07c9 [library_glut.js]: Handle DELETE & BACKSPACE correctly ; 06 November 2013, 10:44:32 UTC
c0f26e6 use __proto__ when available for new streams, otherwise do a full copy; fixes #1759, #1760 06 November 2013, 01:52:22 UTC
21997d5 stub for pthread_rwlock_init 05 November 2013, 21:52:03 UTC
bfc7cac handle errors in ioctl 05 November 2013, 18:59:15 UTC
f69eed7 support ASM_JS=2 not just in test runner, and remove some unneeded uses in test suite 05 November 2013, 18:40:14 UTC
a142589 Fix dependencies on DNS 05 November 2013, 18:32:02 UTC
7016f3e fake dladdr 05 November 2013, 02:06:36 UTC
8cdfca2 pthread_mutexattr_setpshared stub 05 November 2013, 01:46:21 UTC
71ea2d7 add testcase for select fix 04 November 2013, 22:54:38 UTC
26e65ea add missing parens for select mathop 04 November 2013, 22:34:12 UTC
d0be88b Merge pull request #1735 from juj/name_js_functions Name js functions. 04 November 2013, 21:42:11 UTC
b1a0b6e Removed RunnerCore import as no longer needed and added return self.skip('node is not present') to test_nodejs_sockets_echo if node isn't available 04 November 2013, 18:44:08 UTC
8a419cd Give names to most manually assigned functions in the .js files, in form "var x = function()" -> "function x()" so that error stack traces and profiling stack traces are more informative and do not contain anonymous functions. 04 November 2013, 12:07:02 UTC
66d585f [em++]: Removed unnecessary warning about the PYTHON variable ; 04 November 2013, 11:27:11 UTC
a9ef49d CONTRIBUTING.markdown 04 November 2013, 00:55:11 UTC
398408b moved nodejs client test case into main sockets test class as requested. Run with ./runner.py sockets.test_nodejs_sockets_echo 02 November 2013, 11:51:44 UTC
140ea9e do not emit unnecessary coercions when calling a math builtin with a float 02 November 2013, 01:39:33 UTC
3d48329 Merge branch 'incoming' into f32 Conflicts: src/parseTools.js 02 November 2013, 01:26:58 UTC
2c3d580 Merge pull request #1752 from michaeljbishop/glgetintegerv-fix Adds to a test case verifying return values from glGetIntegerv 01 November 2013, 23:58:57 UTC
16b69eb Merge pull request #1750 from juj/no_copy_vfs_to_heap no_copy_vfs_to_heap 01 November 2013, 23:58:44 UTC
cb3fe2b Add command line parameter --no-heap-copy that optimizes for small memory footprint and fread() performance over the default behavior that copied VFS to HEAP, that is designed for mmap() performance. Adjust MEMFS node contentMode enum to reflect whether content is off the main HEAP or not. Note that this enum is not much used, so this has little effect. Add browser tests to check that fread() and mmap() work with and without --no-heap-copy. 01 November 2013, 23:46:31 UTC
2faaa22 add vector support for and, or and xor 01 November 2013, 23:26:52 UTC
504683b Adds to a test case verifying glGetIntegerv returns correct results when the current texture id is not TEXTURE0 and fixes library_gl.js so that it returns correct results. 01 November 2013, 17:52:49 UTC
90dcac5 Merge branch 'fixup-node-version-check' of github.com:bnoordhuis/emscripten into incoming Conflicts: AUTHORS 31 October 2013, 20:10:58 UTC
92f9f71 change getTexUnitType assertion to warnOnce 31 October 2013, 19:56:42 UTC
2e4bc80 handle vector zeroinitializers 31 October 2013, 05:09:17 UTC
819c105 remove finalizeParam and properly use finalizeLLVMParameter everywhere 31 October 2013, 04:11:06 UTC
5dfe077 use proper base type when finalizing vectors 31 October 2013, 04:06:54 UTC
1e4eddb add some more sdl scancodes 31 October 2013, 03:09:51 UTC
4a226fc Merge pull request #1751 from waywardmonkeys/sdl-scancode-fix Fix handling of backspace SDL scancode. 31 October 2013, 03:00:20 UTC
ffde799 fix negative zero handling 31 October 2013, 01:45:27 UTC
b5b84c9 make sure the eval in emscripten_run_script_string emits a string 31 October 2013, 00:48:49 UTC
back to top