When running the regression tests with ./scripts/update_suite.rb on my system, multiple tests complain that the file linux-headers/include/linux/compiler-gcc12.h is missing. This persists even after running make header.
I am using zsh, gcc version 12 and a manjaro linux distribution (which is based on arch).
The first problem seems to be that compgen -c gcc- in zsh does not filter for gcc- and outputs all possible commands.
If I am running bash -c "compgen -c gcc-", the output looks like this:
gcc-ar
gcc-nm
gcc-ranlib
gcc-ar
gcc-nm
gcc-ranlib
This does, besides including everything twice, not contain the version numbers at the end like expected.
As a workaround I have copied linux-headers/include/linux/compiler-gcc5.h manually and everything seems to be working now.
When running the regression tests with
./scripts/update_suite.rbon my system, multiple tests complain that the filelinux-headers/include/linux/compiler-gcc12.his missing. This persists even after runningmake header.I am using zsh, gcc version 12 and a manjaro linux distribution (which is based on arch).
The first problem seems to be that
compgen -c gcc-in zsh does not filter for gcc- and outputs all possible commands.If I am running
bash -c "compgen -c gcc-", the output looks like this:This does, besides including everything twice, not contain the version numbers at the end like expected.
As a workaround I have copied
linux-headers/include/linux/compiler-gcc5.hmanually and everything seems to be working now.