We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9133a5d + 59b37c4 commit fdfdf5bCopy full SHA for fdfdf5b
README.md
@@ -22,6 +22,19 @@ set(RTEMS_CONFIG_DIR
22
)
23
```
24
25
+It is also recommended to add the following lines before the `project()` call in
26
+the application `CMakeLists.txt`:
27
+
28
+```sh
29
+set(CMAKE_SYSTEM_NAME Generic)
30
+set(CMAKE_C_COMPILER_WORKS 1)
31
+set(CMAKE_CXX_COMPILER_WORKS 1)
32
+set(CMAKE_CROSSCOMPILING 1)
33
+```
34
35
+This will disable the compiler checks for the standard C/C++ compiler.
36
37
38
If this repository was cloned inside the application root, the path can be
39
set to `${CMAKE_CURRENT_SOURCE_DIRECTORY}`.
40
0 commit comments