我跟着Writing Node.js Native Extension成功創建了helloworld.node
文件。我可以成功撥打helloworld.node
。Node.js C++擴展部署
而且,我有打電話helloworld.node
一個test.js
。的test.js
內容是
var mhw = require('./helloworld/build/Release/helloworld');
var hw = new mhw.HelloWorld();
console.log(hw.hello());
但我得到Unable to load shared library
錯誤我感動helloworld.node
和test.js
到另一臺計算機後。
hkalex(at)shellmix ~/nodetest> node test.js
node.js:201
throw e; // process.nextTick error, or 'error' event on first tick
^
Error: Unable to load shared library /homex/hkalex/nodetest/helloworld/build/Release/helloworld.node
at Object..node (module.js:463:11)
at Module.load (module.js:351:31)
at Function._load (module.js:310:12)
at Module.require (module.js:357:17)
at require (module.js:368:17)
at Object.<anonymous> (/homex/hkalex/nodetest/test.js:1:73)
at Module._compile (module.js:432:26)
at Object..js (module.js:450:10)
at Module.load (module.js:351:31)
at Function._load (module.js:310:12)
hkalex(at)shellmix ~/nodetest>
我在開發計算機中使用root
。我正在使用shellmix
進行測試。
有什麼想法嗎?謝謝!
更新
如果我把源文件中shellmix
並從源代碼編譯,一切都很好。