TrasherDK
TrasherDK
The build script: ```sh #!/bin/bash BASE=$(dirname "$(realpath "$0")") cd "${BASE}" || exit 1 if [ ! -d "${BASE}/emsdk" ]; then git clone https://github.com/emscripten-core/emsdk.git fi cd "${BASE}/emsdk" || exit 1 git...
Removing `-j$HOST_NCORES` from `bin/build_wasm_emscripten.sh` moves past that error. Next error is: ``` monero-project/src/common/i18n.cpp:36:10: fatal error: 'translation_files.h' file not found #include "translation_files.h" ``` That file does not exist in `external/monero-cpp/external/monero-project/translations/` Isn't...
Building monero in `./bin/build_all.sh` should be after `boost` has been build. Otherwise it will fail if system boost does not have static libraries installed. Maybe setting `BOOST_ROOT` to `build/boost` will...
Nope, no cake. ```sh BOOST_ROOT=$(realpath "/path/to/github-monero-javascript/build/boost") \ BOOST_LIBRARYDIR="${BOOST_ROOT}/lib/" \ make release-static -j4 ``` results in: ```sh CMake Error at /usr/share/cmake-3.5/Modules/FindBoost.cmake:1657 (message): Unable to find the requested Boost libraries. Boost version:...
Building `monero` standalone is just fine. ``` [ 98%] Built target gen_multisig [ 98%] Building CXX object src/daemon/CMakeFiles/daemon.dir/command_server.cpp.o [ 98%] Building CXX object src/daemon/CMakeFiles/daemon.dir/daemon.cpp.o [100%] Building CXX object src/daemon/CMakeFiles/daemon.dir/executor.cpp.o [100%]...
The updated build script: ```sh #!/bin/bash BASE=$(dirname "$(realpath "$0")") cd "${BASE}" || exit 1 if [ ! -d "${BASE}/emsdk" ]; then git clone https://github.com/emscripten-core/emsdk.git fi cd "${BASE}/emsdk" || exit 1...
Okay, this is beyond me. I can't get that `locale` thing to build.
I'm on Slackware 14.2 (x64). Slackware does not include static libraries at all.
1) Firefox native fetch still doesn't support digest auth, required by Monero. 2) Moving beyond Node.js LTS version seems like a really bad idea. 3) Something like [undici](https://github.com/nodejs/undici) is probably...
@CryptoGrampy did you try debug/tracing what's going on below the surface, during requests? Getting rid of browser fetch was not a simple task, if memory serves me. Other than that,...