Skip to content

Commit b2ff7a9

Browse files
Merge pull request #2059 from madeline-underwood/NET-for-Cobalt
Net for cobalt_final checks
2 parents dc8c326 + 9071496 commit b2ff7a9

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

content/learning-paths/servers-and-cloud-computing/dotnet-migration/2-add-shared-c-library.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,9 @@ Hello from the C library!
108108

109109
## Compiling for Arm
110110

111-
If you are compiling for Arm directly on Azure Cobalt, the compiler understands what default processor optimizations it should use, and you can compile as done above. However, if you are cross-compiling in your build pipeline, you should specify `-mcpu=neoverse-n2 -O3` when running the cross-compiler:
111+
If you are compiling for Arm directly on Azure Cobalt, the compiler understands the default processor optimizations it should use, and you can compile in the same way as above.
112+
113+
However, if you are cross-compiling in your build pipeline, you should specify `-mcpu=neoverse-n2 -O3` when running the cross-compiler:
112114

113115
```bash
114116
aarch64-linux-gnu-gcc -mcpu=neoverse-n2 -O3 -shared -o libmylib.so -fPIC mylib.c

content/learning-paths/servers-and-cloud-computing/dotnet-migration/3-any-cpu.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Configure and run an architecture-agnostic OrchardCore app on Arm and x86 using .NET AnyCPU
2+
title: Configure and run an OrchardCore app
33
weight: 4
44

55
### FIXED, DO NOT MODIFY

content/learning-paths/servers-and-cloud-computing/dotnet-migration/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Migrate a .NET application to Azure Cobalt 100
44

55
minutes_to_complete: 25
66

7-
who_is_this_for: This is an advanced topic path for .NET developers who want to take advantage of the performance and cost benefits of Azure Cobalt processors.
7+
who_is_this_for: This is an advanced topic for .NET developers who want to take advantage of the performance and cost benefits of Azure Cobalt processors.
88

99
learning_objectives:
1010
- Build and run a basic OrchardCore CMS application

0 commit comments

Comments
 (0)