02:18:54 Hmmmm i wrote that line which is errorimg out 02:19:28 Does Monero GUI set the c++ standard version somewhere in its CMakeLists? 02:19:45 Because that error will trip if the C++ version is too low 02:22:10 SNeedlewoods @sneedlewoods:monero.social: which CPP file is being compiled when that error occurs 03:43:15 SNeedlewoods: cherry-pick https://github.com/monero-project/monero-gui/pull/4381 13:37:38 jeffro256: I tried with a fresh clone, the error pops up after this message: 13:37:40 ``` 13:37:42 Building CXX object monero/src/common/CMakeFiles/obj_common.dir/threadpool.cpp.o 13:37:44 ``` 13:41:32 tobtoht: it seems something strange is going on, tried to build with the cherry-picked PR (`make debug`), but now when trying to run monero-wallet-gui it complains that `libwallet_api.so` is missing (it's not in `build/lib/` or to be more precise there is not `lib/` in `build/`) 13:41:32 I'm trying to figure out why this happens and will report back 14:30:09 I haven't figured out the "why", but to reproduce missing libwallet_api.a: 14:30:10 1. `git clone --recursive https://github.com/monero-project/monero-gui && cd monero-gui` 14:30:12 2. add changes from #4381 14:30:14 3. `make debug && cd build/bin && ./monero-wallet-gui` 14:30:16 To make it work, run `make` before `make debug`, if `make debug` was used first you can run `rm -rf build/ && git submodule update --init --force --recursive && make && make debug`, `make` alone won't fix it.