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
Builds fine on Ubuntu now OOB. For the web experiment, I tested that with:
npm install --global http-server
http-server
and changing in index.js these to ignore mime type:
const x = await WebAssembly.instantiateStreaming(fetch('a.wasm'), imports);
to
const response = await fetch("a.wasm");
const buffer = await response.arrayBuffer();
const x = await WebAssembly.instantiate(buffer, imports);
it works then. Not sure if it's a best way to test it...
After installing Boost on Windows 10 in
C:/Program Files
,and installing secp256k1 dependency headers with
sudo apt install libsecp256k1-dev
I run into this issue when trying to build:
CMakeError.log
CMakeOutput.log
There seems to be undefined references to pthread.
I probably forgot to install some dependency or something, is there an easy way to install all dependencies required for this project
The text was updated successfully, but these errors were encountered: