今天运行darknet,突然不能build了,然后运行了一下Makefile。找到了原因,提示是gcc版本过高。
/usr/local/cuda/include/crt/host_config.h:129:2: error: #error -- unsupported GNU version! gcc versions later than 8 are not supported!
129 | #error -- unsupported GNU version! gcc versions later than 8 are not supported!
| ^~~~~
先查看版本
sudo update-alternatives --config gcc
可以直接输入数字手动选择。但这只是暂时的。
永久切换。
比如有两个版本的:
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-7 50
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-9 70
其实只需要选择你的,然后设置数字大于50即可。因为默认的gcc编译器优先级等于50。