最近源码编译 opencv,出现下面的错误
[ %] Built target opencv_dnn
Makefile:: recipe for target 'all' failed
make: *** [all] Error
google 一下,才知道原来是安装了 Anaconda 后,python 和 gcc 都用的是 anaconda 的版本,anaconda 的 gcc 版本,比 system defalut 的版本低
解决方案:
1. 在 shell 中先注释 Anaconda 的环境变量
# export PATH=~/anaconda3/bin:$PATH
2. cmake 添加选项
-D WITH_OPENMP=ON