Я использую этот https://github.com/nodejs/node-addon-api/blob/master/doc/bigint.md документ в качестве ссылки для возврата bigint из c ++, но я получаю следующую ошибку:
error: ‘BigInt’ in namespace ‘Napi’ does not name a type
Napi::BigInt HelloWrapped(const Napi::CallbackInfo& info);
Вот мой исходный код:
#include <napi.h>
#include "bigintexample.h"
std::int64_t bigintexample::hello() {
return 1234;
}
Napi::BigInt bigintexample::HelloWrapped(const Napi::CallbackInfo& info) {
Napi::Env env = info.Env();
Napi::BigInt returnValue = Napi::BigInt::New(env, bigintexample::hello());
return returnValue;
}
Napi::Object InitAll(Napi::Env env, Napi::Object exports) {
exports.Set("hello", Napi::Function::New(env, bigintexample::HelloWrapped));
return exports;
}
NODE_API_MODULE(NODE_GYP_MODULE_NAME, InitAll)
В napi.h функция BigInt доступна только в том случае, если определение NAPI_VERSION больше 2147483646. Когда я задаю для определения NAPI_VERSION значение, большее 2147483646, я получаю следующее сообщение об ошибке
/home/user/bigint-napi/node_modules/node-addon-api/napi-inl.h:573:24: error: ‘napi_create_bigint_int64’ was not declared in this scope
napi_status status = napi_create_bigint_int64(env, val, &value);