You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/learning-paths/laptops-and-desktops/windows_armpl/1-first-vs-project.md
+13-13Lines changed: 13 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,24 +1,24 @@
1
1
---
2
-
title: Create a Windows on Arm application
2
+
title: Create and Run a Windows on Arm application
3
3
weight: 3
4
4
5
5
### FIXED, DO NOT MODIFY
6
6
layout: learningpathall
7
7
---
8
8
## Create and configure a project
9
9
10
-
You are now ready to create a Windows on Arm application.
10
+
You are now ready to create a Windows on Arm application. For your first project, you will create a simple console application.
11
11
12
-
For your first project, you will create a simple console application.
12
+
The next steps will guide you through how to create and configure your project.
13
13
14
-
As shown in Figure 1, go to the **Start** window, and select**Create a new project**.
14
+
Begin by going to the **Start** window, and selecting**Create a new project**. See Figure 1.
15
15
16
16

17
17
18
-
Then, as shown in Figure 2, in **Configure your new project**, do the following:
18
+
Then, in **Configure your new project**, do the following:
19
19
20
20
* Select **Console App**.
21
-
* Provide a project name, such as `ConsoleApp1`.
21
+
* Provide a project name, such as `ConsoleApp1`, as Figure 2 shows.
22
22
* Click **Create**.
23
23
24
24

@@ -34,30 +34,30 @@ int main()
34
34
}
35
35
```
36
36
37
-
Whilst Microsoft Visual Studio automatically configures the build environment for the hardware of the CPU architecture, you will still benefit from familiarizing yourself with the relevant configuration settings and learning what to use. Continue to learn more about the configuration settings.
37
+
Whilst Microsoft Visual Studio automatically configures the build environment for the hardware of the CPU architecture, you still benefit from familiarizing yourself with the relevant configuration settings. So continue to learn more about how to get set up.
38
38
39
39
## ARM64 Configuration Settings
40
40
41
-
Click on the **Debug** drop-down menu, and select **Configuration Manager...**
41
+
Now click on the **Debug** drop-down menu, and select **Configuration Manager...**
Click**Build**, then **Build Solution**, and your application will compile.
50
+
Now click**Build**, then **Build Solution**, and your application will compile.
51
51
52
52
## Run your first Windows on Arm application
53
53
54
54
Use the green arrow to run the program you compiled, and you will see the print statement from your code correctly executed in the console.
55
55
56
56

57
57
58
-
You can also use the tools provided by Visual Studio to check the compiled executable.
58
+
You can also use the tools that Visual Studio provides to check the compiled executable.
59
59
60
-
The [dumpbin](https://learn.microsoft.com/en-us/cpp/build/reference/dumpbin-reference?view=msvc-170) command-line tool is included with Microsoft Visual Studio. You can use it to analyze binary files such as:
60
+
Visual Studio includes the command-line tool [dumpbin](https://learn.microsoft.com/en-us/cpp/build/reference/dumpbin-reference?view=msvc-170), and you can use it to analyze binary files such as:
61
61
62
62
* Executable files (.exe).
63
63
* Object files (.obj).
@@ -77,4 +77,4 @@ You can see that the file format shows `AA64 machine (ARM64)` in the file header
77
77
78
78

79
79
80
-
Continue to the next page to build and run a more computation-intensive application.
80
+
Continue to the next page to get set up with Git before you move on to build and run a more computationally-intensive application.
The sample repository is forked from the [original GitHub repository](https://github.com/marcpems/SpinTheCubeInGDI) with some modifications for demonstration purposes.
26
+
The repository containing the example is forked from the [original GitHub repository for Spin the Cube](https://github.com/marcpems/SpinTheCubeInGDI) with some modifications for demonstration purposes.
Copy file name to clipboardExpand all lines: content/learning-paths/laptops-and-desktops/windows_armpl/_index.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ who_is_this_for: This is an introductory topic for software developers who want
7
7
8
8
learning_objectives:
9
9
- Develop a Windows on Arm application using Microsoft Visual Studio.
10
-
- Utilize Arm Performance Libraries to optimize the performance of the application.
10
+
- Utilize Arm Performance Libraries to optimize the performance of an application.
11
11
12
12
prerequisites:
13
13
- A Windows on Arm computer such as the [Windows Dev Kit 2023](https://learn.microsoft.com/en-us/windows/arm/dev-kit), or a Lenovo Thinkpad X13s running Windows 11.
0 commit comments