WIP: Experiment with using lit as a test runner
14 files changed
tree: d47a8d84527065fe58c482cf4ba40df7ad2ad43f
  1. .circleci/
  2. .github/
  3. cmake/
  4. docs/
  5. media/
  6. site/
  7. src/
  8. system/
  9. tests/
  10. third_party/
  11. tools/
  12. .clang-format
  13. .coveragerc
  14. .editorconfig
  15. .eslintrc.yml
  16. .flake8
  17. .gitattributes
  18. .gitignore
  19. .gitmodules
  20. .style.yapf
  21. AUTHORS
  22. ChangeLog.md
  23. CONTRIBUTING.md
  24. em++
  25. em++.bat
  26. em++.py
  27. em-config
  28. em-config.bat
  29. em-config.py
  30. em-dwp
  31. em-dwp.bat
  32. emar
  33. emar.bat
  34. emar.py
  35. embuilder
  36. embuilder.bat
  37. embuilder.py
  38. emcc
  39. emcc.bat
  40. emcc.py
  41. emcmake
  42. emcmake.bat
  43. emcmake.py
  44. emconfigure
  45. emconfigure.bat
  46. emconfigure.py
  47. emdump
  48. emdump.bat
  49. emdwp
  50. emdwp.bat
  51. emmake
  52. emmake.bat
  53. emmake.py
  54. emnm
  55. emnm.bat
  56. emprofile
  57. emprofile.bat
  58. emranlib
  59. emranlib.bat
  60. emranlib.py
  61. emrun
  62. emrun.bat
  63. emrun.py
  64. emscons
  65. emscons.bat
  66. emscons.py
  67. emscripten-version.txt
  68. emscripten.py
  69. emsize
  70. emsize.bat
  71. emsize.py
  72. LICENSE
  73. Makefile
  74. package-lock.json
  75. package.json
  76. README.md
  77. requirements-dev.txt
README.md

emscripten logo

Main project page: https://emscripten.org

GitHub CI status: CircleCI

Chromium builder status: emscripten-releases

Overview

Emscripten compiles C and C++ to WebAssembly using LLVM and Binaryen. Emscripten output can run on the Web, in Node.js, and in wasm runtimes.

Emscripten provides Web support for popular portable APIs such as OpenGL and SDL2, allowing complex graphical native applications to be ported, such as the Unity game engine and Google Earth. It can probably port your codebase, too!

While Emscripten mostly focuses on compiling C and C++ using Clang, it can be integrated with other LLVM-using compilers (for example, Rust has Emscripten integration, with the wasm32-unknown-emscripten and asmjs-unknown-emscripten targets).

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 and suitable for a compiler toolchain, while (2) LLVM‘s original license, the University of Illinois/NCSA Open Source License, was also offered to allow Emscripten’s code to be integrated upstream into LLVM. The second reason became less important after Emscripten switched to the LLVM wasm backend, at which point there isn't any code we expect to move back and forth between the projects; also, LLVM relicensed to Apache 2.0 + exceptions meanwhile. In practice you can just consider Emscripten as MIT licensed (which allows you to do pretty much anything you want with a compiler, including commercial and non-commercial use).

See LICENSE for the full content of the licenses.