我使用Mac 10.10和OpenCV 3.0时,在编译项目时出现以下错误:

ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)

之后,我将c++标准库更改为libstdc++,出现了另一个错误:

/usr/local/include/opencv2/hal/defs.h:271:14:找不到'cstdint'文件

希望有人可以帮助我

最佳答案

根据此question中的最高答案,有两种方法可以解决此问题,因为您正在使用macO,并且默认编译器为Clang。您可以使用:

#include <tr1/cstdint>

要么
#include <stdint.h>

而不是cstdint,它是libc++的一部分。

关于c++ - OpenCV-找不到 'cstdint'文件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/32552249/

10-12 15:33