c – 使用node-gyp构建时无法加载node.js本机插件,但在使用Visual Studio构建时可以正常工作

前端之家收集整理的这篇文章主要介绍了c – 使用node-gyp构建时无法加载node.js本机插件,但在使用Visual Studio构建时可以正常工作前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我为node.js编写了一个本机插件,使用没有node-gyp的MSVC编译它,并在节点REPL和应用程序中成功使用它.我正在使用x64节点并编译x64插件.我正试图用node-gyp来构建东西.我已经获得了node-gyp来生成Visual Studio解决方案并对其进行编译,但是出来的插件不起作用.我得到的唯一错误是:
Error: The specified procedure could not be found.

    at Object.Module._extensions..node (module.js:480:11)
    at Module.load (module.js:356:32)
    at Function.Module._load (module.js:312:12)
    at Module.require (module.js:362:17)
    at require (module.js:378:17)
    at repl:1:13
    at REPLServer.self.eval (repl.js:111:21)
    at rli.on.e (repl.js:260:20)
    at REPLServer.self.eval (repl.js:118:5)
    at Interface.<anonymous> (repl.js:250:12)

当我运行一个试图加载插件的脚本时,我得到了这个:

module.js:480
  process.dlopen(filename,module.exports);
          ^
Error: The specified procedure could not be found.

    at Object.Module._extensions..node (module.js:480:11)
    at Module.load (module.js:356:32)
    at Function.Module._load (module.js:312:12)
    at Module.require (module.js:362:17)
    at require (module.js:378:17)
    at Object.<anonymous> (c:\blah\testheaders.js:1:75)
    at Module._compile (module.js:449:26)
    at Object.Module._extensions..js (module.js:467:10)
    at Module.load (module.js:356:32)
    at Function.Module._load (module.js:312:12)

我了解到dlopen与在Linux上加载动态库有关,但找不到与节点相关的任何有用信息(特别是在Windows上).这个插件需要一些第三方dll,但是它们在我的路径上,而且当我在没有node-gyp的情况下编译时,插件工作正常.

我需要做些什么来弄清楚如何使这项工作?

解决方法

事实证明,问题在于我使用了NODE_MODULE宏.我有这样的事情:
NODE_MODULE(SomeAddonName,Init)

但是我的binding.gyp有这个:

"target_name": "totallyDifferentName",

事实证明,binding.gyp中的target_name必须与模块名称(NODE_MODULE的第一个参数)相同.

感谢@TooTallNate帮助我做到这一点!

原文链接:https://www.f2er.com/c/117714.html

猜你在找的C&C++相关文章