File tree Expand file tree Collapse file tree 1 file changed +24
-6
lines changed
docs/core/deploying/native-aot Expand file tree Collapse file tree 1 file changed +24
-6
lines changed Original file line number Diff line number Diff line change @@ -20,22 +20,40 @@ The Native AOT deployment model uses an ahead-of-time compiler to compile IL to
20
20
21
21
[ Visual Studio 2022] ( https://visualstudio.microsoft.com/vs/ ) , including the ** Desktop development with C++** workload with all default components.
22
22
23
- # [ Ubuntu ] ( #tab/linux-ubuntu )
23
+ # [ Alpine ] ( #tab/linux-alpine )
24
24
25
25
- The compiler toolchain and developer packages for libraries that the .NET runtime depends on.
26
- - Ubuntu (18.04 +)
26
+ - Alpine (3.15 +)
27
27
28
28
``` sh
29
- sudo apt-get install clang zlib1g -dev
29
+ sudo apk add clang build-base zlib -dev
30
30
```
31
31
32
- # [ Alpine ] ( #tab/linux-alpine )
32
+ # [ Fedora ] ( #tab/linux-fedora )
33
33
34
34
- The compiler toolchain and developer packages for libraries that the .NET runtime depends on.
35
- - Alpine (3.15 +)
35
+ - Fedora (39 +)
36
36
37
37
``` sh
38
- sudo apk add clang build-base zlib-dev
38
+ sudo dnf install clang zlib-devel
39
+ ```
40
+
41
+ # [ RHEL] ( #tab/linux-rhel )
42
+
43
+ - The compiler toolchain and developer packages for libraries that the .NET runtime depends on.
44
+ - RHEL (8+)
45
+
46
+ ``` sh
47
+ sudo dnf install clang zlib-devel
48
+ ```
49
+
50
+ # [ Ubuntu] ( #tab/linux-ubuntu )
51
+
52
+ - The compiler toolchain and developer packages for libraries that the .NET runtime depends on.
53
+ - Ubuntu (18.04+)
54
+
55
+ ``` sh
56
+ sudo apt-get install clang zlib1g-dev
39
57
```
40
58
41
59
# [ macOS] ( #tab/macOS )
You can’t perform that action at this time.
0 commit comments