From f22147c18de07843a88eea9ed65d4c1e664fabbd Mon Sep 17 00:00:00 2001 From: Jan Kotas Date: Thu, 20 Oct 2022 20:01:14 -0700 Subject: [PATCH] Update pre-requisites for native aot publishing (#31535) Addressed feedback from https://github.com/dotnet/runtime/issues/69739#issuecomment-1264133462 Co-authored-by: Adeel Mujahid <3840695+am11@users.noreply.github.com> --- docs/core/deploying/native-aot/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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