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: doc/guide/src/LibrarySupport.adoc
+10
Original file line number
Diff line number
Diff line change
@@ -81,12 +81,20 @@ The symbol `libname_open` is a function which must be called before any other sy
81
81
The `libname` is controlled by the `-libname` compile option and defaults to the name of the output, with any prefixing lib stripped (eg: `foo` -> `foo`, `libfoo` -> `foo`).
82
82
The symbol `libname_close` is a function which should be called to clean up memory once done.
83
83
84
+
For WebAssembly (Wasm), there is little distinction between libraries and executables.
85
+
A `.wasm` binary is loaded by a browser or other runtime engine, and one or more exported functions are called as needed.
86
+
Executables export a standard entry point, while libraries export arbitrary functions.
87
+
A standard set of imports are defined by WASI (the WebAssembly System Interface), though custom imports can be declared.
88
+
From MLton's perspective, building a Wasm library is just like building a regular executable but with library-style exports.
89
+
Such a library can be built with `-format libexecutable`.
90
+
84
91
Summary of `-format` options:
85
92
86
93
* `executable`: create an executable (a DSO)
87
94
* `library`: create a dynamic shared library (a DSO)
88
95
* `archive`: create an archive of symbols (not a DSO) that can be linked into an executable
89
96
* `libarchive`: create an archive of symbols (not a DSO) that can be linked into a library
97
+
* `libexecutable`: create a library with exported symbols, but in an executable format (a DSO)
90
98
91
99
Related options:
92
100
@@ -141,3 +149,5 @@ The linker will pick one or the other, usually preferring the dynamic library.
141
149
While a quirk of the operating system allows external import to work for both archives and libraries,
142
150
portable projects should not depend on this behaviour.
143
151
On other systems it can matter how the library is linked (static or dynamic).
0 commit comments