如何在Windows上的node-gyp中使用静态库?

时间:2019-02-11 14:28:48

标签: c++ node.js linker node-gyp gyp

我正在尝试使用node-gyp链接静态库,以便将其用作本机node插件。但是,当我运行node-gyp rebuild时,出现以下链接错误:

error LNK2001: unresolved external symbol "double __cdecl mylibengine::criticalZvalue(double)" (?criticalZvalue@mylibengine@@YANN@Z)

紧随其后的是:

C:\Users\Mihai\Desktop\msp-addon\build\Release\mylib-addon.node : fatal error LNK1120: 1 unresolved externals [C:\Users\Mihai\Desktop\mylib-addon\build\mylib-addon.vcxproj

binding.gyp如下:

{
    'targets': [{
        'target_name': 'mylib-addon',
        'cflags!': [ '-fno-exceptions' ],
        'cflags_cc!': [ '-fno-exceptions' ],

        'include_dirs': [
            '<!@(node -p \"require(\'node-addon-api\').include\")',
            '<(module_root_dir)/dependencies/mylib/include/'
        ],

        'sources': [
            'src/MyLibNode.cpp'
        ],

        'dependencies': [
            '<!(node -p \"require(\'node-addon-api\').gyp\")'
        ],

        'libraries': [
            '<(module_root_dir)/dependencies/mylib/lib/x64/libmylib.a'
        ],

        'defines': [ 'NAPI_DISABLE_CPP_EXCEPTIONS' ]
    }]
}

MyLibNode.cpp看起来像这样:

#include <napi.h>
#include "engine.h"

Napi::Object InitAll(Napi::Env env, Napi::Object exports)
{
    // Temporary check to make sure `libmylib.a` works.
    mylibengine::criticalZvalue(.3);

    return exports;
}

NODE_API_MODULE(mspaddon, InitAll)

我确定链接器可以找到libmylib.a,因为当我更改库名(例如,更改为disabled.a)时,我收到另一个错误,提示无法打开输入文件。但是,无法解析外部符号

我找到了一个类似的未解决问题here。对其他问题的回答表明将完整的库路径添加到libraries,但是我认为这不是我的情况的问题。

为什么node-gyp无法解析外部符号?


其他信息:

  • 我正在运行Windows 10
  • 如下所述,通过尝试与g++一起使用,我测试了该库是否正常工作

我具有以下项目结构:

├───build
└───dependencies
    └───mylib
        ├───include
        └───lib
            └───x64
  • dependencies/mylib/include内部,我有一个名为engine.h的头文件,其中包含:
#pragma once

namespace mylibengine
{
    double criticalZvalue(double quantile);
}
  • dependencies/mylib/lib/x64内,我有一个名为libmylib.a的静态库
  • 在根目录中,我有一个名为main.cpp的文件,其中包含:
#include <iostream>
#include <engine.h>


int main()
{
    std::cout << "Main working." << "\n";
    std::cout << mylibengine::criticalZvalue(.3) << "\n";
}

我可以将可执行文件中的库链接为:

g++ -obuild/main main.cpp -Idependencies/mylib/include/ -Ldependencies/mylib/lib/x64/ -lmylib

在这一点上,运行main.exe会很好地输出:

Main working.
-0.524002

0 个答案:

没有答案