-
Notifications
You must be signed in to change notification settings - Fork 8.2k
Labels
bugThe issue is a bug, or the PR is fixing a bugThe issue is a bug, or the PR is fixing a bug
Description
Describe the bug
I'm seeing a problem where make clean; make -j20 is run and the dependencies look messed up. This was found in code review for #23429 but is reproducible without that PR:
apboie@apboie-mobl4:~/projects/zephyr3/zephyr/tests/kernel/mem_protect/userspace/out master /home/apboie/projects/zephyr3/zephyr
$ mj
[ 0%] Preparing syscall dependency handling
[ 1%] Preparing syscall dependency handling
[ 1%] Preparing syscall dependency handling
[ 2%] Generating misc/generated/syscalls_subdirs.trigger
[ 3%] Generating misc/generated/syscalls_subdirs.trigger
[ 4%] Generating misc/generated/syscalls_subdirs.trigger
[ 4%] Generating misc/generated/syscalls.json, misc/generated/subsystems.json
[ 5%] Generating misc/generated/syscalls.json, misc/generated/subsystems.json
In addition, occasionally when doing this the build fails:
Traceback (most recent call last):
File "/home/apboie/projects/zephyr3/zephyr/scripts/subfolder_list.py", line 80, in <module>
main()
File "/home/apboie/projects/zephyr3/zephyr/scripts/subfolder_list.py", line 56, in main
os.symlink(directory, symlink)
FileExistsError: [Errno 17] File exists: '/home/apboie/projects/zephyr3/zephyr/include/dt-bindings/interrupt-controller' -> '/home/apboie/projects/zephyr3/zephyr/tests/kernel/mem_protect/userspace/out/zephyr/misc/generated/syscalls_links/_home_apboie_projects_zephyr3_zephyr_include_dt-bindings_interrupt-controller'
[ 5%] Generating include/generated/driver-validation.h
[ 6%] Generating include/generated/kobj-types-enum.h, include/generated/otype-to-str.h
zephyr/CMakeFiles/syscall_list_h_target.dir/build.make:166: recipe for target 'zephyr/misc/generated/syscalls_subdirs.trigger' failed
make[2]: *** [zephyr/misc/generated/syscalls_subdirs.trigger] Error 1
make[2]: *** Deleting file 'zephyr/misc/generated/syscalls_subdirs.trigger'
CMakeFiles/Makefile2:797: recipe for target 'zephyr/CMakeFiles/syscall_list_h_target.dir/all' failed
make[1]: *** [zephyr/CMakeFiles/syscall_list_h_target.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
[ 6%] Built target driver_validation_h_target
[ 6%] Built target kobj_types_h_target
Makefile:83: recipe for target 'all' failed
make: *** [all] Error 2
This seems a race condition which only reproduces sometimes and depends on the host workstation characteristics and the -j parameter to make.
To reproduce:
cd tests/kernel/mem_protect/userspace
mkdir out
cd out
cmake -DBOARD=qemu_x86 ..
make -j20
make clean
make -j20
Metadata
Metadata
Assignees
Labels
bugThe issue is a bug, or the PR is fixing a bugThe issue is a bug, or the PR is fixing a bug