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
| IAR Build Tools (BX) | [Contact us](https://iar.com/about/contact) | [for Arm](https://updates.iar.com/?product=BXARM)[^2] (or for others[^3])
19
-
| IAR Embedded Workbench | [Try now](https://www.iar.com/embedded-development-tools/free-trials) | [for Arm](https://updates.iar.com/?product=EWARM)[^2] (or for others[^3])
17
+
| IAR Build Tools (CX) ☁️ | [Contact us](https://iar.com/about/contact) | for [Arm](https://updates.iar.com/?product=CXARM)<br>for [RISC-V](https://updates.iar.com/?product=CXRISCV)<br>for [Renesas RL78](https://updates.iar.com/?product=CXRL78)<br>for [Renesas RX](https://updates.iar.com/?product=CXRX)<br>
18
+
| IAR Build Tools (BX) | [Contact us](https://iar.com/about/contact) | for [Arm](https://updates.iar.com/?product=BXARM)[^2] (or for others[^3])
19
+
| IAR Embedded Workbench | [Try now](https://www.iar.com/embedded-development-tools/free-trials) | for [Arm](https://updates.iar.com/?product=EWARM)[^2] (or for others[^3])
20
20
21
21
2) Download and install [CMake](https://github.com/Kitware/CMake/releases/latest).
22
22
23
23
3) Clone this repository to your computer. For more information, see ["Cloning a repository"](https://docs.github.com/en/repositories/creating-and-managing-repositories/cloning-a-repository).
24
24
25
25
## Building a Basic CMake Project
26
26
>[!NOTE]
27
-
>While this guide is based on the IAR Build Tools for Arm (CXARM) 9.60.4 on Linux, it should work with other supported IAR products with no or minimal changes.
27
+
>While this guide is based on the IAR Build Tools for Arm (CXARM) 9.70.1 on Linux, it should work with other supported IAR products with no or minimal changes.
28
28
29
29
The most basic CMake project is an executable built from a single source code file. For simple projects like this, a `CMakeLists.txt` file with about half dozen of commands is all that is required.
30
30
@@ -84,9 +84,18 @@ During the configuration phase, CMake reads these variables from:
84
84
### Configure and Build
85
85
We are ready to build our first project! Run CMake to configure the project and then build it with your chosen build tool.
86
86
87
-
- Before starting to use CMake, make sure your compiler is working properly. Example (for Arm):
88
-
```
89
-
/path/to/iccarm --version
87
+
- Before starting to use CMake, make sure your compiler is working properly. Below you will find an oneliner that will try to compile a simple module:
0 commit comments