aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-08-09use instanceof operator for detecting ExitStatus throwAnthony Pesch
2013-08-09 - always throw an exception in exitAnthony Pesch
- remove default exit status prints - added EXITSTATUS global to enable exit callbacks to determine the status
2013-08-08converted Object.defineProperty calls to use Object.defineProperties in ↵Anthony Pesch
order to make closure happy
2013-08-08Refactor a dictionary comprehension for Python 2.6 compatibility.Nick Bray
2013-08-08Improve the generation of ~/.emscripten on Windows.Nick Bray
2013-08-08Allow the PNaCl toolchain to be used in place of a standard version of Clang.Nick Bray
The main differences between PNaCl and standard Clang are that the tools are prefixed with "pnacl-" instead of "llvm-" and PNaCl does not accept "-o=file" style arguments, and requires them to be specified as "-o file".
2013-08-08metadata parsing tweaksAlon Zakai
Modified by ncbray to simultaniously support LLVM 3.2 and 3.3.
2013-08-08make dce check flexibleAlon Zakai
2013-08-08remove nocapture in aligned byvalAlon Zakai
2013-08-08ignore nocapture parametersAlon Zakai
2013-08-08ignore llvm 3.3 attributesAlon Zakai
2013-08-08generate static linking invokes in the prelude; fixes #1468Alon Zakai
2013-08-08Merge pull request #1470 from inolen/preload_path_fixesAlon Zakai
file preload path fixes
2013-08-08Merge pull request #1484 from juj/browser_image_decoding_checkAlon Zakai
Fix --preload-file on image files on Opera.
2013-08-08disable test_fcvt in s_0_xAlon Zakai
2013-08-08Merge pull request #1473 from juj/wno-warn-absolute-pathsAlon Zakai
Wno warn absolute paths
2013-08-08Merge pull request #1403 from imvu/scons-updates-pull-requestAlon Zakai
Bring SCons integration up to date with latest incoming and fix some SCons build reliability issues and races
2013-08-08Merge pull request #1467 from abergmeier/extend_versionsAlon Zakai
Extend use of LLVM_ADD_VERSION and CLANG_ADD_VERSION
2013-08-08support input and output vars in inline jsAlon Zakai
2013-08-08Merge pull request #1483 from juj/graceful_gl_failAlon Zakai
Graceful gl fail
2013-08-08If WebGL context creation fails, return 0 in glutCreateWindow and ↵Jukka Jylänki
EGL_NO_CONTEXT in eglCreateContext to allow the user to detect whether WebGL support is enabled in the browser or not.
2013-08-08Do not attempt browser image decoding if the browser does not have the ↵Jukka Jylänki
window.URL or window.webkitURL objects. Fix the warning print to appear in that case on Opera/9.80 (Windows NT 6.1; WOW64) Presto/2.12.388 Version/12.16.
2013-08-08fix AF_INET6 value in settings.jsAlon Zakai
2013-08-08Merge branch 'link_exports' of github.com:ncbray/emscripten into incomingAlon Zakai
2013-08-08Add Nick Bray to authors.Nick Bray
2013-08-08Added FS deps to socket-related library functionsAnthony Pesch
2013-08-08Document -Wno-warn-absolute-paths for emcc --help.Jukka Jylänki
2013-08-07 - parameterized sdl_image.c to support different path variationsAnthony Pesch
- converted sdl_image_jpeg to using sdl_image.c
2013-08-07Merge pull request #1446 from yukoba/network-constantsAlon Zakai
Added constants to network headers.
2013-08-07ensure test runner cache names are valid filenamesAlon Zakai
2013-08-07Merge pull request #1474 from waywardmonkeys/cvt-functionsAlon Zakai
Cvt functions
2013-08-07Merge pull request #1475 from inolen/env_tidyAlon Zakai
tidied up environment conditionals in shell
2013-08-07fix test_inet4Alon Zakai
2013-08-07add missing return value in readdir_rAlon Zakai
2013-08-07fix test_files_mAlon Zakai
2013-08-07fix test_filesAlon Zakai
2013-08-07manually fill heap history in write targets of VFS.write|read into the heapAlon Zakai
2013-08-07indentation fixAlon Zakai
2013-08-07Merge pull request #1478 from inolen/function_spacingAlon Zakai
updated bad function formatting
2013-08-07fix static linker parsing bugAlon Zakai
2013-08-07Merge pull request #1479 from j4m3z0r/fast_isspaceAlon Zakai
Workaround for Chrome bug https://code.google.com/p/chromium/issues/deta...
2013-08-07Workaround for Chrome bug ↵James Gregory
https://code.google.com/p/chromium/issues/detail?id=269679 : switch statement I added in isspace to make it faster seemed to cause the whole function to be optimized away. Replace with simple range checks in conditional expression.
2013-08-07updated bad function formattingAnthony Pesch
2013-08-07Ensure the linker pulls in static libraries containing exported functions.Nick Bray
Previously, an exported function contained in a library would not be found by the linker if the library did not contain symbols transitively reachable from main.
2013-08-07tidied up environment conditionalsAnthony Pesch
2013-08-07Add fcvt, ecvt, gcvt functions.Bruce Mitchener
2013-08-07Add -Wno-warn-absolute-paths cmdline option to allow hiding the absolute ↵Jukka Jylänki
-I/-L path warning for codebases that understand they are crosscompiling and aren't referring to native system headers.
2013-08-07fix for test_sdl_image_compressedAnthony Pesch
2013-08-06Updated test_sdl_image to more extensively test relative pathsAnthony Pesch
2013-08-06store preloaded images by their absolute pathAnthony Pesch