Ubuntu 17.04 编译OpenCV 问题解决stdlib.h: No such file or directory

前端之家收集整理的这篇文章主要介绍了Ubuntu 17.04 编译OpenCV 问题解决stdlib.h: No such file or directory前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

Ubuntu 上cmake编译OpenCV,遇到一个错误


usr/include/c++/6/cstdlib:75:25: fatal error: stdlib.h: 没有那个文件或目录

很是奇怪,百度搜索了下,得知是GCC6的一个改动造成的。

自己的gcc是6.3.0

百度上的几个解决方法很是弱智,竟然说用ubuntu14来编译。

几经搜索,终于找到了正规的解决方法




down vote accepted

Try by disabling pre-compiled headers,either from cmake-gui or using the command line parameter

-DENABLE_PRECOMPILED_HEADERS=OFF

https://stackoverflow.com/questions/40262928/error-compiling-opencv-fatal-error-stdlib-h-no-such-file-or-directory

原文链接:https://www.f2er.com/ubuntu/352727.html

猜你在找的Ubuntu相关文章