Emscripten: An LLVM-to-JavaScript Compiler
Перейти к файлу
Alon Zakai 9483f8b998 infrastructure for implementing i64 math in asm.js, and implement i64Add and llvm_uadd_with_overflow_i64 that way 2013-03-12 17:14:07 -07:00
cmake/Platform Adjust default compiler and linker flags when using cmake. With emscripten, -O2 is ignored when compiling .bc files, so pass it to linker instead. 2013-01-14 02:44:03 +02:00
demos eSpeak text-to-speech demo 2011-07-30 23:44:30 -07:00
docs fix typos in paper. 2013-01-31 17:12:31 +07:00
patches emscripten.py 2010-09-09 20:03:24 -07:00
src infrastructure for implementing i64 math in asm.js, and implement i64Add and llvm_uadd_with_overflow_i64 that way 2013-03-12 17:14:07 -07:00
system Add missing iso646.h 2013-03-08 15:36:37 +07:00
tests make test_sdl_audio_mix report a result 2013-03-12 15:45:43 -07:00
third_party experimental partial jni support 2013-03-04 18:00:38 -08:00
tools fix globalScope altering in runtimelink modules; fixes test_runtimelink 2013-03-12 14:56:01 -07:00
.gitignore .gitignore tests/fake/ 2013-03-04 19:12:10 -08:00
AUTHORS Merge branch 'ldc' of github.com:gagern/emscripten into gagern-ldc2 2013-03-07 18:24:07 -08:00
ChangeLog fix getloadavg 2011-10-02 16:25:15 +02:00
LICENSE LICENSE and AUTHORS 2011-06-23 16:07:17 -07:00
README.markdown logo 2013-01-16 20:21:28 -08:00
em++ Updated to add a PYTHON config option instead of defaulting to python2. This should preserve the default behavior in a way that can be overridden. 2012-12-19 18:06:48 -05:00
em-config Updated scripts to call python2 directly rather than relying on python symlink pointing to the right place. See PEP394 for details on why this should be OK. 2012-12-19 18:06:48 -05:00
emar add cache debugging 2013-02-26 19:42:31 -05:00
emcc support -s KEY=@PATH in emcc, for very large settings values 2013-03-12 10:47:35 -07:00
emcc.py add empty emcc.py to work around issue 663 2012-10-29 10:59:50 -07:00
emconfigure Updated scripts to call python2 directly rather than relying on python symlink pointing to the right place. See PEP394 for details on why this should be OK. 2012-12-19 18:06:48 -05:00
emlibtool Updated scripts to call python2 directly rather than relying on python symlink pointing to the right place. See PEP394 for details on why this should be OK. 2012-12-19 18:06:48 -05:00
emmake Updated scripts to call python2 directly rather than relying on python symlink pointing to the right place. See PEP394 for details on why this should be OK. 2012-12-19 18:06:48 -05:00
emranlib Updated scripts to call python2 directly rather than relying on python symlink pointing to the right place. See PEP394 for details on why this should be OK. 2012-12-19 18:06:48 -05:00
emscripten.py infrastructure for implementing i64 math in asm.js, and implement i64Add and llvm_uadd_with_overflow_i64 that way 2013-03-12 17:14:07 -07:00

README.markdown

logo

Emscripten

Emscripten is an LLVM-to-JavaScript compiler. It takes LLVM bitcode - which can be generated from C/C++, using llvm-gcc or clang, or any other language that can be converted into LLVM - and compiles that into JavaScript, which can be run on the web (or anywhere else JavaScript can run).

Links to demos, tutorial, FAQ, etc: https://github.com/kripken/emscripten/wiki

Main project page: http://emscripten.org

Emscripten is MIT licensed, see LICENSE.txt.