我创建了一个节点应用程序,需要从C程序创建一个节点模块。我使用SWIG(简单包装器接口生成器)来做这个,我得到了节点模块。应用程序在我的PC上成功运行。我现在想要交叉编译我的应用程序以在Beaglebone Black上运行它。我运行此命令:
node-gyp --arch=arm configure
效果非常好,但是当我跑步时:
node-gyp build
我收到了这条消息:
module.js:356
Module._extensions[extension](this, filename);
^
Error: /home/user/a/build/Release/example.node: cannot open shared object file: No such file or directory
at Module.load (module.js:356:32)
at Function.Module._load (module.js:312:12)
at Module.require (module.js:364:17)
at require (module.js:380:17)
at Object.<anonymous> (/home/user/a/app.js:21:8)
at Module._compile (module.js:456:26)
at Object.Module._extensions..js (module.js:474:10)
at Module.load (module.js:356:32)
at Function.Module._load (module.js:312:12)
at Function.Module.runMain (module.js:497:10)
我认为这个问题与swig版本有关。但是我没有成功将它安装在beagleBone Black上。