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
{{ message }}
This repository was archived by the owner on Jun 22, 2025. It is now read-only.
After calling python3 ../.vscode/generate_compdb.py the compile_commands.json were generated. VSC couldn't find sources of includes like #include <linux/init.h>.
It was because generated file contained as directory path to the directory that contained *.cmd files.
After replacing in the script 'directory': out_dir, to 'directory': f"/lib/modules/{os.uname().release}/build", VSC was able to find proper header files.