From 2b88fbf74b5c939b4db47f862651b6c897016fe4 Mon Sep 17 00:00:00 2001 From: Jan Kotas Date: Fri, 30 Sep 2022 23:13:32 -0700 Subject: [PATCH 1/3] Update pre-requisites for native aot publishing Addressed feedback from https://github.com/dotnet/runtime/issues/69739#issuecomment-1264133462 --- docs/core/deploying/native-aot/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/core/deploying/native-aot/index.md b/docs/core/deploying/native-aot/index.md index 82b704e00bf9a..64c9e9239d907 100644 --- a/docs/core/deploying/native-aot/index.md +++ b/docs/core/deploying/native-aot/index.md @@ -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 build-base zlib-dev ``` ## Publish Native AOT - CLI From 224d5d465e349eb400bc33efb09eac0eea58284b Mon Sep 17 00:00:00 2001 From: Jan Kotas Date: Sun, 2 Oct 2022 23:34:48 -0700 Subject: [PATCH 2/3] Feedback --- docs/core/deploying/native-aot/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/core/deploying/native-aot/index.md b/docs/core/deploying/native-aot/index.md index 64c9e9239d907..c3d19ff641fd3 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+) From bd44c4a9af0698c7b64de22e3e97fa993674cbf1 Mon Sep 17 00:00:00 2001 From: Jan Kotas Date: Sun, 2 Oct 2022 23:44:19 -0700 Subject: [PATCH 3/3] Update docs/core/deploying/native-aot/index.md Co-authored-by: Adeel Mujahid <3840695+am11@users.noreply.github.com> --- docs/core/deploying/native-aot/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/core/deploying/native-aot/index.md b/docs/core/deploying/native-aot/index.md index c3d19ff641fd3..dcdda08ee2f28 100644 --- a/docs/core/deploying/native-aot/index.md +++ b/docs/core/deploying/native-aot/index.md @@ -35,7 +35,7 @@ On Linux, install compiler toolchain and developer packages for libraries that . - Alpine (3.15+) ```sh - sudo apk add build-base zlib-dev + sudo apk add clang build-base zlib-dev ``` ## Publish Native AOT - CLI