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
Part of the build system duties is to generate includes for the main linker script. This is a two-phase process:
First, the linker script is updated to contain include directives for includes which are generated to be empty.
Then, includes are appended with section for each process as they are discovered.
If CMake is executed twice in parallel (possible with some IDEs, which automatically launch CMake upon CMakeLists.txt editation) and user starts build, which also runs CMake as part of automatic build system regeneration, then it may happen, that these two instances align so that both recreate empty includes before any of them starts appending process sections into these files.
This is an extremely rare condition and basically a user error, so even mere detection of this situation and displaying error message is enough.
The text was updated successfully, but these errors were encountered:
Part of the build system duties is to generate includes for the main linker script. This is a two-phase process:
First, the linker script is updated to contain include directives for includes which are generated to be empty.
Then, includes are appended with section for each process as they are discovered.
If CMake is executed twice in parallel (possible with some IDEs, which automatically launch CMake upon CMakeLists.txt editation) and user starts build, which also runs CMake as part of automatic build system regeneration, then it may happen, that these two instances align so that both recreate empty includes before any of them starts appending process sections into these files.
This is an extremely rare condition and basically a user error, so even mere detection of this situation and displaying error message is enough.
The text was updated successfully, but these errors were encountered: