You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
case 8:
{
string str="%" PRIo64;
strcpy(fmp,str.c_str());
break;
}
case 10:
{ string str = "%" PRIu64;
strcpy(fmp,str.c_str());
break;
} case 16:
{ string str= "%" PRIx64;
strcpy(fmp,str.c_str());
break;
}
After doing this i get a new error stating bcrypto.node module not found. I have tried to install the latest version also but cannot resolve this. Posting this issue to check if any one else is also facing the error. I don't think using yarn as a package manager should make an issue?
The text was updated successfully, but these errors were encountered:
I was able to build bcoin and run all tests on OSX with node v16.4.0
You shouldn't have to install anything since we include all node_modules in the git repository now. Simply clone and run npm rebuild which will compile from source code all the native modules (like bcrypto.node)
I think keeping dependencies up to date makes sense of course, I just want to make sure there isn't some other issue going on in your environment.
Hi, I am from Summer of Bitcoin and was trying to install bcoin using yarn as my package manager.
yarn install
gave me an error which redirected me to the N64 dependency showing an error at lines 1126 to 1143 in n64.cc . It seemed a simple bug so I followed this idea https://stackoverflow.com/questions/20944784/why-is-conversion-from-string-constant-to-char-valid-in-c-but-invalid-in-c and tried to fix like thisAfter doing this i get a new error stating bcrypto.node module not found. I have tried to install the latest version also but cannot resolve this. Posting this issue to check if any one else is also facing the error. I don't think using yarn as a package manager should make an issue?
The text was updated successfully, but these errors were encountered: