Update usage of WASM_BIGINT in test_other.py (#24683)

Since WASM_BIGINT is enabled by default some of these usages needed
updating.
1 file changed
tree: d1e6d755c695777d801889d0ae88ac0f82d6e8f4
  1. .circleci/
  2. .github/
  3. cmake/
  4. docs/
  5. media/
  6. site/
  7. src/
  8. system/
  9. test/
  10. third_party/
  11. tools/
  12. .clang-format
  13. .editorconfig
  14. .git-blame-ignore-revs
  15. .gitattributes
  16. .gitignore
  17. .gitmodules
  18. .prettierrc.yml
  19. .style.yapf
  20. AUTHORS
  21. bootstrap
  22. bootstrap.bat
  23. bootstrap.py
  24. ChangeLog.md
  25. CONTRIBUTING.md
  26. em++
  27. em++.bat
  28. em++.py
  29. em-config
  30. em-config.bat
  31. em-config.py
  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. emdwp
  48. emdwp.bat
  49. emmake
  50. emmake.bat
  51. emmake.py
  52. emnm
  53. emnm.bat
  54. emprofile
  55. emprofile.bat
  56. emranlib
  57. emranlib.bat
  58. emranlib.py
  59. emrun
  60. emrun.bat
  61. emrun.py
  62. emscan-deps
  63. emscan-deps.bat
  64. emscan-deps.py
  65. emscons
  66. emscons.bat
  67. emscons.py
  68. emscripten-version.txt
  69. emsize
  70. emsize.bat
  71. emsize.py
  72. emstrip
  73. emstrip.bat
  74. emstrip.py
  75. emsymbolizer
  76. emsymbolizer.bat
  77. emsymbolizer.py
  78. eslint.config.mjs
  79. LICENSE
  80. Makefile
  81. package-lock.json
  82. package.json
  83. pyproject.toml
  84. README.md
  85. requirements-dev.txt
  86. SECURITY.md
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.