diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2019-06-19 21:56:00 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2019-08-02 22:12:05 +0300 |
commit | 9251e3bf2ca607b3d6778c246c708916a29aaa88 (patch) | |
tree | 7b6dd0a509d6615e5a06f0529451d507b4685dd0 /docs/markdown | |
parent | cba23413c58b2089ad752a358aafa3d06edaea4a (diff) | |
download | meson-wasm.tar.gz |
Add basic Webassembly support via Emscripten.wasm
Diffstat (limited to 'docs/markdown')
-rw-r--r-- | docs/markdown/Reference-tables.md | 4 | ||||
-rw-r--r-- | docs/markdown/snippets/wasm.md | 5 |
2 files changed, 9 insertions, 0 deletions
diff --git a/docs/markdown/Reference-tables.md b/docs/markdown/Reference-tables.md index 84ce06f41..41dd23852 100644 --- a/docs/markdown/Reference-tables.md +++ b/docs/markdown/Reference-tables.md @@ -13,6 +13,7 @@ These are return values of the `get_id` (Compiler family) and | clang | The Clang compiler | gcc | | clang-cl | The Clang compiler (MSVC compatible driver) | msvc | | dmd | D lang reference compiler | | +| emscripten| Emscripten WASM compiler | | | flang | Flang Fortran compiler | | | g95 | The G95 Fortran compiler | | | gcc | The GNU Compiler Collection | gcc | @@ -66,6 +67,8 @@ set in the cross file. | s390x | IBM zSystem s390x | | sparc | 32 bit SPARC | | sparc64 | SPARC v9 processor | +| wasm32 | 32 bit Webassembly | +| wasm64 | 64 bit Webassembly | | x86 | 32 bit x86 processor | | x86_64 | 64 bit x86 processor | @@ -86,6 +89,7 @@ These are provided by the `.system()` method call. | cygwin | The Cygwin environment for Windows | | darwin | Either OSX or iOS | | dragonfly | DragonFly BSD | +| emscripten | Emscripten's Javascript environment | | freebsd | FreeBSD and its derivatives | | gnu | GNU Hurd | | haiku | | diff --git a/docs/markdown/snippets/wasm.md b/docs/markdown/snippets/wasm.md new file mode 100644 index 000000000..04fbf4916 --- /dev/null +++ b/docs/markdown/snippets/wasm.md @@ -0,0 +1,5 @@ +## Experimental Webassembly support via Emscripten + +Meson now supports compiling code to Webassembly using the Emscripten +compiler. As with most things regarding Webassembly, this support is +subject to change. |