Emscripten: An LLVM-to-JavaScript Compiler
Перейти к файлу
Alon Zakai c2d449216c do not emit temp .o files to curr dir, if target is not them; fixes #2644 2014-08-11 12:34:15 -07:00
cmake/Modules Fix EMSCRIPTEN root path search in CMake toolchain file. 2014-07-12 13:07:40 +03:00
docs Merge pull request #2151 from haneefmubarak/cleanup 2014-03-03 13:50:09 -08:00
media remove extraneous eps since we have svg 2014-03-06 15:39:23 -08:00
scons-tools Convert embind/emval to JS library format. 2014-08-03 08:20:12 +07:00
site docs updates following #2650 2014-08-11 11:15:57 -07:00
src fix embind in ie11: ES5 does not provide a 'name' property on functions 2014-08-09 19:38:32 -07:00
system Remove comments from html5.h. Add link to doc file and built version 2014-08-07 17:59:53 -07:00
tests do not emit temp .o files to curr dir, if target is not them; fixes #2644 2014-08-11 12:34:15 -07:00
third_party support const methods, not just attributes, in webidl binder 2014-05-15 12:32:27 -07:00
tools build libcx and libcxxabi with -Oz, for size 2014-08-07 14:05:02 -07:00
.gitignore Add vim temp files to .gitignore 2014-07-08 23:19:39 +07:00
AUTHORS Merge branch 'enum-support' of https://github.com/artillery/emscripten into incoming 2014-08-06 17:37:40 -07:00
CONTRIBUTING.md rewrote READMEs and other markdown docs 2014-02-22 19:07:35 -08:00
ChangeLog Updated ChangeLog up to v1.22.1 2014-08-11 15:48:30 +03:00
LICENSE update year to 2014 2014-02-22 12:12:34 -08:00
README.md Merge branch 'patch-1' of github.com:dandv/emscripten into incoming 2014-03-24 14:06:49 -07:00
em++ Revert "**all: hard tabs, trailing newlines**" 2014-02-28 19:24:29 -08:00
em++.bat Fix python spawn scripts on Windows when the emscripten path contains spaces, like C:\Program Files\emscripten. 2013-08-23 16:05:53 +03:00
em-config Revert "**all: hard tabs, trailing newlines**" 2014-02-28 19:24:29 -08:00
em-config.bat Fix python spawn scripts on Windows when the emscripten path contains spaces, like C:\Program Files\emscripten. 2013-08-23 16:05:53 +03:00
emar Revert "**all: hard tabs, trailing newlines**" 2014-02-28 19:24:29 -08:00
emar.bat Fix python spawn scripts on Windows when the emscripten path contains spaces, like C:\Program Files\emscripten. 2013-08-23 16:05:53 +03:00
emcc do not emit temp .o files to curr dir, if target is not them; fixes #2644 2014-08-11 12:34:15 -07:00
emcc.bat Fix python spawn scripts on Windows when the emscripten path contains spaces, like C:\Program Files\emscripten. 2013-08-23 16:05:53 +03:00
emcc.py Revert "**all: hard tabs, trailing newlines**" 2014-02-28 19:24:29 -08:00
emcmake Fix emcmake to work on Windows as well. 2014-07-10 13:35:06 +03:00
emcmake.bat Redirect emcmake calls to emconfigure. 2014-02-14 15:24:19 +01:00
emconfigure Change to fit in with Alon's coding style. 2013-04-25 17:55:08 +02:00
emconfigure.bat Fix python spawn scripts on Windows when the emscripten path contains spaces, like C:\Program Files\emscripten. 2013-08-23 16:05:53 +03:00
emlink.py make emlink.py executable 2014-01-29 18:18:14 -08:00
emmake Revert "**all: hard tabs, trailing newlines**" 2014-02-28 19:24:29 -08:00
emmake.bat Fix python spawn scripts on Windows when the emscripten path contains spaces, like C:\Program Files\emscripten. 2013-08-23 16:05:53 +03:00
emranlib Revert "**all: hard tabs, trailing newlines**" 2014-02-28 19:24:29 -08:00
emranlib.bat Fix python spawn scripts on Windows when the emscripten path contains spaces, like C:\Program Files\emscripten. 2013-08-23 16:05:53 +03:00
emrun Add support to emrun to receive binary file dumps, and add a JS function emrun_file_dump() when building with --emrun that performs a data dump back to server. Used e.g. to debug issue #1826. 2014-07-29 16:37:21 +03:00
emrun.bat Added emrun utility that allows running .html files in a browser like they were normal executables. For more information, see https://groups.google.com/forum/#!topic/emscripten-discuss/t2juu3q1H8E . 2013-12-14 01:19:22 +02:00
emscons Revert "**all: hard tabs, trailing newlines**" 2014-02-28 19:24:29 -08:00
emscripten-version.txt 1.21.1 2014-08-07 14:37:49 -07:00
emscripten.py add fastcomp stack overflow checks and testing 2014-08-07 16:15:54 -07:00
package.json update package.json 2014-03-03 13:58:28 -08:00

README.md

emscripten logo

Emscripten is an LLVM-to-JavaScript compiler. It takes LLVM bitcode - which can be generated from C/C++, using llvm-gcc (DragonEgg) 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

License

Emscripten is available under 2 licenses, the MIT license and the University of Illinois/NCSA Open Source License.

Both are permissive open source licenses, with little if any practical difference between them.

The reason for offering both is that (1) the MIT license is well-known, while (2) the University of Illinois/NCSA Open Source License allows Emscripten's code to be integrated upstream into LLVM, which uses that license, should the opportunity arise.

See LICENSE for the full content of the licenses.