From bd96bf018c4ce346bb5abc6bff735827972a887c Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Fri, 9 Feb 2024 15:23:37 -0800 Subject: [PATCH] Update README to use the name "WASI SDK" consistently (#384) --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index b854711..41adc2f 100644 --- a/README.md +++ b/README.md @@ -71,7 +71,7 @@ tar xvf wasi-sdk-${WASI_VERSION_FULL}-linux.tar.gz ## Use -Use the clang installed in the wasi-sdk directory: +Use the clang installed in the `wasi-sdk` directory: ```shell script export WASI_SDK_PATH=`pwd`/wasi-sdk-${WASI_VERSION_FULL} @@ -111,10 +111,10 @@ in the install directory. ## Docker Image -We provide a [docker image] including wasi-sdk that can be used for building +We provide a [docker image] including WASI SDK that can be used for building projects without a separate installation of the SDK. Autotools, CMake, and Ninja are included in this image, and standard environment variables are set to use -wasi-sdk for building. +WASI SDK for building. [docker image]: https://github.com/WebAssembly/wasi-sdk/pkgs/container/wasi-sdk @@ -127,7 +127,7 @@ docker run -v `pwd`:/src -w /src ghcr.io/webassembly/wasi-sdk make Take note of the [notable limitations](#notable-limitations) below when building projects, for example many projects will need threads support -disabled in a configure step before building with wasi-sdk. +disabled in a configure step before building with WASI SDK. ## Notable Limitations