RISC-V memes
- C++ 85.1%
- Meson 7.7%
- Assembly 6.8%
- Shell 0.4%
kernel/meson.build line 8 seeded kernel_includes with
include_directories('include'), but kernel/include is absent from the
worktree and from all of git history (git log --all on the path is
empty, and it is not gitignored). meson aborts at configure time on a
missing include directory, so this tree has never configured for
anyone.
The line is dead, not a stale pointer: every header the kernel
includes -- opensbi/*, sunxi_d1_pinctrl/*, uart_16550/*, and the
commented-out dtb/* -- is served by a per-driver include/ directory
that the corresponding subdir() meson.build appends to kernel_includes
itself. Nothing needs a shared kernel-level include path.
Seed the list empty instead of inventing a directory to satisfy it.
|
||
|---|---|---|
| kernel | ||
| tools | ||
| .gitignore | ||
| meson.build | ||
| riscv.cross | ||