Bump github/codeql-action from 3.24.9 to 3.24.10 (#21722)

Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.24.9 to 3.24.10.
- [Release notes](https://github.com/github/codeql-action/releases)
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
- [Commits](https://github.com/github/codeql-action/compare/1b1aada464948af03b950897e5eb522f92603cc2...4355270be187e1b672a7a1c7c7bae5afdc1ab94a)

---
updated-dependencies:
- dependency-name: github/codeql-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 file changed
tree: 84414a73559e1b052ff9680466eae14c801d0091
  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. .coveragerc
  14. .editorconfig
  15. .eslintrc.yml
  16. .flake8
  17. .git-blame-ignore-revs
  18. .gitattributes
  19. .gitignore
  20. .gitmodules
  21. .mypy.ini
  22. .prettierrc.yml
  23. .style.yapf
  24. AUTHORS
  25. bootstrap
  26. bootstrap.bat
  27. bootstrap.py
  28. ChangeLog.md
  29. CONTRIBUTING.md
  30. em++
  31. em++.bat
  32. em++.py
  33. em-config
  34. em-config.bat
  35. em-config.py
  36. emar
  37. emar.bat
  38. emar.py
  39. embuilder
  40. embuilder.bat
  41. embuilder.py
  42. emcc
  43. emcc.bat
  44. emcc.py
  45. emcmake
  46. emcmake.bat
  47. emcmake.py
  48. emconfigure
  49. emconfigure.bat
  50. emconfigure.py
  51. emdump
  52. emdump.bat
  53. emdwp
  54. emdwp.bat
  55. emmake
  56. emmake.bat
  57. emmake.py
  58. emnm
  59. emnm.bat
  60. emprofile
  61. emprofile.bat
  62. emranlib
  63. emranlib.bat
  64. emranlib.py
  65. emrun
  66. emrun.bat
  67. emrun.py
  68. emscons
  69. emscons.bat
  70. emscons.py
  71. emscripten-version.txt
  72. emsize
  73. emsize.bat
  74. emsize.py
  75. emstrip
  76. emstrip.bat
  77. emstrip.py
  78. emsymbolizer
  79. emsymbolizer.bat
  80. emsymbolizer.py
  81. LICENSE
  82. Makefile
  83. package-lock.json
  84. package.json
  85. README.md
  86. requirements-dev.txt
  87. 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.