diff --git a/docs/core/deploying/native-aot/index.md b/docs/core/deploying/native-aot/index.md index 82b704e00bf9a..dcdda08ee2f28 100644 --- a/docs/core/deploying/native-aot/index.md +++ b/docs/core/deploying/native-aot/index.md @@ -24,7 +24,7 @@ The following prerequisites need to be installed before publishing .NET projects On Windows, install [Visual Studio 2022](https://visualstudio.microsoft.com/vs/), including Desktop development with C++ workload. -On Linux, install clang and developer packages for libraries that .NET runtime depends on. +On Linux, install compiler toolchain and developer packages for libraries that .NET runtime depends on. - Ubuntu (18.04+) @@ -35,7 +35,7 @@ On Linux, install clang and developer packages for libraries that .NET runtime d - Alpine (3.15+) ```sh - sudo apk add clang gcc lld musl-dev build-base zlib-dev + sudo apk add clang build-base zlib-dev ``` ## Publish Native AOT - CLI