You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: site/source/docs/compiling/WebAssembly.rst
+49-6Lines changed: 49 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -92,14 +92,57 @@ When using ``emcc`` to build to WebAssembly, you will see a ``.wasm`` file conta
92
92
93
93
You may also see additional files generated, like a ``.data`` file if you are preloading files into the virtual filesystem. All that is exactly the same as when building to asm.js. One difference you may notice is the lack of a ``.mem file``, which for asm.js contains the static memory initialization data, which in WebAssembly we can pack more efficiently into the WebAssembly binary itself.
94
94
95
-
WebAssembly support in browsers
96
-
===============================
97
95
98
-
WebAssembly is supported by all major browsers going back to Firefox 52, Chrome
99
-
57, Safari 11 and Opera 44.
96
+
WebAssembly feature extensions
97
+
==============================
98
+
99
+
Since its original launch, WebAssembly has been expanded with various feature
100
+
extensions, which have been implmented in browsers. A list of features
101
+
(including already-shipped and in-progress) and details about browser versions
0 commit comments