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
gen_syscall_header.py is being run at cmake time, not at build time.
There seems to be an assumption that this action has no dependencies. This is not true. The script itself is a dependency.
The build system needs to re-run this script, when it builds the kernel, if the script itself changes. This used to work but broke with the new build system.
The text was updated successfully, but these errors were encountered:
This fixeszephyrproject-rtos#5186
The script that generates syscall_macros.h is moved from Configuration
time to build time. This allows us to express to the build system that
syscall_macros.h depends on the script that generates it.
Signed-off-by: Sebastian Bøe <[email protected]>
This fixes#5186
The script that generates syscall_macros.h is moved from Configuration
time to build time. This allows us to express to the build system that
syscall_macros.h depends on the script that generates it.
Signed-off-by: Sebastian Bøe <[email protected]>
gen_syscall_header.py is being run at cmake time, not at build time.
There seems to be an assumption that this action has no dependencies. This is not true. The script itself is a dependency.
The build system needs to re-run this script, when it builds the kernel, if the script itself changes. This used to work but broke with the new build system.
The text was updated successfully, but these errors were encountered: