Jeffro
Jeffro
@bloatmode It is `rpc_ssl.key` and `rpc_ssl.crt` in the data directory. They both need to be able to be readable by the `monero` user if that's what you're running the command...
@hyc I think that's the better option and that's how it's done in the main gitian README
On newer systems, `-Ofast` can be generally be significantly faster than `-O2`. I think instead of dropping `-Ofast` completely, we should detect the older CPU (using `/proc/cpuinfo` or otherwise) and...
> Also I'm going to re-compile this with Clang on my next spare time in case of GCC-specific bug. You are compiling on said Intel Atom processor, correct?
> It needs merging as the current doc is inaccurate. I agree, I was waiting to see if anyone was going to double-check my work, since posting a example that...
@selsta Before you merge, I am going to double check one thing with portable storage format: bool arrays. In c++ there is a specialization for `std::vector` which packs each bool...
@selsta Okay we're good!
You can double check results with this code: ``` #include #include #include "byte_slice.h" #include "hex.h" #include "serialization/keyvalue_serialization.h" #include "span.h" #include "storages/portable_storage.h" using namespace epee; struct Data { std::vector ba; BEGIN_KV_SERIALIZE_MAP()...
Same GPG key here: https://github.com/monero-project/gitian.sigs/blob/master/gitian-pubkeys/jeffro256.asc
There's another check against `mdlen` a few lines below (line 162 I believe) that I think you should bring back up where this edit is: `(size_t)mdlen % sizeof(uint64_t)) != 0`....