node:符号查找错误:,undefined symbol:_ZN4demo3sumEii

时间:2017-09-05 12:11:53

标签: c++ node.js

我正在创建一个C ++插件,我想使用一个静态库。我有一个.a库libarith,它做了简单的添加。

-libarith.a
-hello.cc
-hello.js

我的binding.gyp文件如下: -

{ "targets": [
        {
        "target_name": "addon",
        "sources": [ "hello.cc" ],
        "libraries": [ "-/home/folder/api/addon/libarith.a" ],
        "cflags!": [ "-fno-exceptions" ],
        "cflags": [ "-std=c++11" ],
        "cflags_cc!": [ "-fno-exceptions" ]
        }
        ]
    }

当我编译我的hello.cc时,它编译得很好。但是当我运行我的插件时,它会出现以下错误:

节点:符号查找错误:/home/folder/api/addon/build/Release/addon.node: undefined symbol: _ZN4demo3sumEii.

我是插件的新手,非常感谢帮助。

代码段: - libarith.a包含:

int sum(int a ,int b){

    return a+b;
} 

// hello.cc

#include <node.h>
#include <vector>
#include <iostream>
#include <v8.h>
using namespace std;
using namespace v8;
namespace demo {

using v8::FunctionCallbackInfo;
using v8::Isolate;
using v8::Local;
using v8::Object;
using v8::String;
using v8::Value;
void newmethod(const FunctionCallbackInfo<Value>& args)
{ extern int sum(int,int);

Isolate* isolate = args.GetIsolate();
double abc= sum(4,5);
Local<Number> newnumber =Number::New(isolate,abc);
v8::String::Utf8Value r(args[1]);
    std::string rst(*r);
Local<String> first = String::NewFromUtf8(isolate, "firstargument");
Local<String> second = String::NewFromUtf8(isolate, "secondargument");
Local<Object> newobj= Object::New(isolate);
newobj->Set(first,String::NewFromUtf8(isolate, *s));
newobj->Set(second,newnumber);
args.GetReturnValue().Set(newobj);

}
void init(Local<Object> exports) {
  NODE_SET_METHOD(exports, "newmethod", newmethod);
}
NODE_MODULE(addon, init)
} 

// hello.js

const addon = require('./build/Release/addon');

var ss = "helloo";
var samplestring = "It is not a sample string";
console.log(addon.newmethod(samplestring, ss));

编辑: - 解决方案的工作原理如下。我试图为库创建一个单独的目录,它工作正常。

2 个答案:

答案 0 :(得分:1)

它说,它找不到声明(.h的实现)。我认为你给你的图书馆指的是错误的。有两种解决方案:

  1. binding.gyp ~/whereItIsLocated将完整目录写入您的资料库,我的情况是~/CLionProjects/node-player-core/PlayerCore/lib/x64/yourLibraryName.a
  2. 如果以前的解决方案无法提供帮助,您可以将库复制到/usr/lib。您可以使用sudo cp ~/whereLibraryLocated /usr/lib
  3. 执行此操作

答案 1 :(得分:0)

在binding.gyp文件中指定用于相应.h文件的.so库可帮助我解决同一问题:

"libraries": [
  "/usr/lib/mylib.so"
]

此链接可帮助我找到它:Getting "Symbol Lookup Error" when calling C library from C++ (Node.js Addon)