当使用 Windows 时,Napi 和我运行npm i
它编译并且工作得很好。在 linux 上执行相同操作时,napi-inl.h 出现此错误
project/node_modules/node-addon-api/napi-inl.h: In instantiation of ‘static Napi::Function Napi::Function::New(napi_env, Callable, const char*, void*) [with Callable = Napi::Promise (*)(Napi::CallbackInfo&); napi_env = napi_env__*]’:
../test.cc:10:50: required from here
project/node_modules/node-addon-api/napi-inl.h:1985:22: error: cannot bind non-const lvalue reference of type ‘Napi::CallbackInfo&’ to an rvalue of type ‘Napi::CallbackInfo’
1985 | typedef decltype(cb(CallbackInfo(nullptr, nullptr))) ReturnType;
| ~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
project/node_modules/node-addon-api/napi-inl.h:1985:22: error: cannot bind non-const lvalue reference of type ‘Napi::CallbackInfo&’ to an rvalue of type ‘Napi::CallbackInfo’
project/node_modules/node-addon-api/napi-inl.h:1996:5: error: type ‘<type error>’ argument given to ‘delete’, expected pointer
1996 | delete callbackData;
| ^~~~~~
test.cc 看起来像这样
#include <napi.h>
#include "processData.h"
// This is were the Node module function name is assigned
// when imported getData() will be the function to call
// It calls Process()
Napi::Object Init(Napi::Env env, Napi::Object exports) {
exports.Set(Napi::String::New(env, "getData"),
Napi::Function::New(env, Process));
return exports;
}
NODE_API_MODULE(NODE_GYP_MODULE_NAME, Init)
我不知道这是我的问题还是 NAPI 的问题