File tree Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -81,6 +81,25 @@ For convenience when building packages that aren't yet updated, updated
8181config.sub and config.guess files are installed at ` share/misc/config.* `
8282in the install directory.
8383
84+ ## Docker Image
85+
86+ We provide a [ docker image] ( https://github.com/WebAssembly/wasi-sdk/pkgs/container/wasi-sdk )
87+ including wasi-sdk that can be used for building projects without a
88+ separate installation of the SDK. Autotools, CMake, and Ninja are included
89+ in this image, and standard environment variables are set to use wask-sdk
90+ for building.
91+
92+ For example, this command can build a make-based project with the Docker
93+ image.
94+
95+ ```
96+ docker run -v `pwd`:/src -w /src ghcr.io/webassembly/wasi-sdk make
97+ ```
98+
99+ Take note of the [ notable limitations] ( #notable-limitations ) below when
100+ building projects, for example many projects will need threads support
101+ disabled in a configure step before building with wasi-sdk.
102+
84103## Notable Limitations
85104
86105This repository does not yet support C++ exceptions. C++ code is
You can’t perform that action at this time.
0 commit comments