Ubuntu 22.04编译linux内核时报错"multiple definition of yylloc"

原因:ubuntu22.04默认gcc版本过高,超过gcc v10.0即会报错.

解决方案即是降低gcc版本。

sudo apt install gcc-9 g++-9
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-9 100
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-9 100
gcc -v

你可能感兴趣的:(Ubuntu 22.04编译linux内核时报错"multiple definition of yylloc")