我已经获得了使用c ++ dll的所有相应文件:
我正在尝试将Node N-API与给定文件一起使用,以便我们可以在节点服务器中使用此c ++ dll。
问题在于,当我尝试使用node-gyp进行构建时,会抛出以下错误:
LINK : fatal error LNK1181: cannot open input file 'lib\MathUtils.lib' [C:\Development\Github\node-thin-client\service\build\interface.vcxproj]
我使用的节点版本是:8.11.2
node-gyp版本是:3.6.2
我的binding.gyp文件如下:
{
"variables": {
"dll_files": [
"lib/MathUtils.dll"
]
},
"targets": [
{
"target_name": "interface",
"sources": [
"src/interface/interface.cpp"
],
"include_dirs": [
"<!@(node -p \"require('node-addon-api').include\")",
"include"
],
"dependencies": [
"<!(node -p \"require('node-addon-api').gyp\")"
],
"libraries": [
"lib/MathUtils.lib"
],
"cflags!": ["-fno-exceptions"],
"cflags_cc!": ["-fno-exceptions"],
"defines": ["NAPI_CPP_EXCEPTIONS"]
}
]
}
答案 0 :(得分:0)
我遇到了类似的问题。我看到已经有一段时间了,但是如果其他任何人在构建链接到其他dll的节点插件时遇到了这种情况,这就是我所做的:
由于在项目下的./build
目录中生成了项目文件,但您引用了./lib/MathUtils.lib
,因此出现了链接错误。如果在Visual Studio中打开生成的.sln项目,则会看到问题。因此,您可以这样做:
"libraries": [../lib/MathUtils.lib"]
或
"libraries": [ "<(module_root_dir)/lib/MathUtils.lib" ]
请注意,首先相对路径在一个目录中。第二个将把完整路径放在项目的链接器行中。
对我来说variables
部分也没有将dll复制到发行目录,它似乎什么也没做。相反,我使用了“副本”部分:
"conditions": [
["OS==\"win\"", {
"libraries": [ "<(module_root_dir)/tsflexnet/TSFlexnetCLib.lib" ],
"copies": [
{
"destination": "<(module_root_dir)/build/Release/",
"files": [ "<(module_root_dir)/tsflexnet/TSFlexnetCLib.dll" ]
}
]
}]
]