Emscripten: An LLVM-to-JavaScript Compiler
Перейти к файлу
Alon Zakai 5338d4b9c5 add testcases for last few commits 2014-05-19 11:52:45 -07:00
cmake Store CMAKE_AR and CMAKE_RANLIB in CMake CACHE so that the values persist to user CMake toolchain files. Also CACHE the variable Emscripten, in the hope of that fixing the visibility issue with variable. Some users have reported that in their CMakeLists.txt files the variable EMSCRIPTEN is not always visible, even though in the Emscripten cmake unit tests it always works. Fixes #2288. Thanks mhenschel! 2014-04-14 18:37:13 +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 Upstream changes to scons support from IMVU. 2014-03-06 23:10:13 +07:00
src expose typeof via emscripten::val 2014-05-16 23:41:36 -07:00
system expose typeof via emscripten::val 2014-05-16 23:41:36 -07:00
tests expose typeof via emscripten::val 2014-05-16 23:41:36 -07:00
third_party support const methods, not just attributes, in webidl binder 2014-05-15 12:32:27 -07:00
tools add testcases for last few commits 2014-05-19 11:52:45 -07:00
.gitignore [thirdparty/lzma.js]: Fixed doit.sh so that it compiles on Windows using MingW's GCC & Bash ; 2013-11-06 18:47:26 +08:00
AUTHORS Add myself to AUTHORS 2014-05-13 15:28:19 +02:00
CONTRIBUTING.md rewrote READMEs and other markdown docs 2014-02-22 19:07:35 -08:00
ChangeLog Updated ChangeLog. 2014-04-23 00:01:42 +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
em-config Revert "**all: hard tabs, trailing newlines**" 2014-02-28 19:24:29 -08:00
em-config.bat
emar Revert "**all: hard tabs, trailing newlines**" 2014-02-28 19:24:29 -08:00
emar.bat
emcc warn on bad exports, fixes #2338 2014-05-12 11:35:58 -07:00
emcc.bat
emcc.py Revert "**all: hard tabs, trailing newlines**" 2014-02-28 19:24:29 -08:00
emcmake Redirect emcmake calls to emconfigure. 2014-02-14 15:24:19 +01:00
emcmake.bat Redirect emcmake calls to emconfigure. 2014-02-14 15:24:19 +01:00
emconfigure
emconfigure.bat
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
emranlib Revert "**all: hard tabs, trailing newlines**" 2014-02-28 19:24:29 -08:00
emranlib.bat
emrun Linux fixes to emrun. Don't fail if glxinfo is not installed, and look for Chrome in 'google-chrome' executable name as well. Don't fail if browser is not found. 2014-01-03 21:04:29 +02: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 Merge branch 'sdl_mouse_wheel' of github.com:jechter/emscripten into incoming 2014-05-12 11:39:17 -07:00
emscripten.py warn on bad exports, fixes #2338 2014-05-12 11:35:58 -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.