node-gyp - 如何在mac设置C++路径

浏览:32日期:2023-05-19

问题描述

CXX(target) Release/obj.target/addon/main.o../main.cpp:6:10: fatal error: ’opencv2/opencv.hpp’ file not found#include <opencv2/opencv.hpp> ^1 error generated.make: *** [Release/obj.target/addon/main.o] Error 1gyp ERR! build error gyp ERR! stack Error: `make` failed with exit code: 2gyp ERR! stack at ChildProcess.onExit (/usr/local/lib/node_modules/node-gyp/lib/build.js:270:23)gyp ERR! stack at emitTwo (events.js:87:13)gyp ERR! stack at ChildProcess.emit (events.js:172:7)gyp ERR! stack at Process.ChildProcess._handle.onexit (internal/child_process.js:200:12)gyp ERR! System Darwin 14.5.0gyp ERR! command '/usr/local/bin/node' '/usr/local/bin/node-gyp' 'build'gyp ERR! cwd /Users/CoderQ/beautiful/bookshelf/gyp/gypgyp ERR! node -v v4.0.0gyp ERR! node-gyp -v v3.0.3gyp ERR! not ok

我node-gyp configure成功,再执行node-gyp rebuild时 出现这个问题 但是/usr/local/include是有这个文件的,我觉得应该是哪个path没设置正确,但我就是不知道到底要设置什么path

问题解答

回答1:

一般是搜索/usr/include的,要不你检查下你的/usr/include是否存在,不存在的话把/usr/local/include软链成/usr/include试试。

回答2:

是你安装opencv的时候没有在编译完导入路径吧。

回答3:

’include_dirs’: [ ’/usr/local/include’,],

'targets'.’link_settings’.’include_dirs’ = ’/usr/local/include’找到方法了 building.gyp中增加这个定义 不过又来了个 ’cstdint’ file not found

相关文章: