mirror of
https://github.com/status-im/nimbus-eth1.git
synced 2025-01-10 12:26:02 +00:00
51bc1cf87f
* dist: precompiled binaries and Docker images The builds are reproducible, the binaries are portable and statically link librocksdb. This took some patching. Upstream PR: https://github.com/facebook/rocksdb/pull/9752 32-bit ARM is missing as a target because two different GCC versions fail with an ICE when trying to cross-compile RocksDB. Using Clang instead is too much trouble for a platform that nobody should be using anyway. (Clang doesn't come with its own target headers and libraries, can't be easily convinced to use the ones from GCC, so it needs an fs image from a 32-bit ARM distro - at which point I stopped caring). * CI: disable reproducibility test
29 lines
692 B
Smarty
29 lines
692 B
Smarty
# Binary Nimbus distribution
|
|
|
|
This binary distribution of the Nimbus eth1 package is compiled
|
|
in a [reproducible way](https://reproducible-builds.org/) from source files
|
|
hosted at https://github.com/status-im/nimbus-eth1.
|
|
|
|
The tarball containing this README uses the following naming scheme:
|
|
|
|
```bash
|
|
nimbus-eth1_<TARGET OS>_<TARGET CPU>_<VERSION>_<GIT COMMIT>.tar.gz
|
|
```
|
|
|
|
## Reproducing the build
|
|
|
|
Besides the generic build requirements, you also need [Docker](https://www.docker.com/).
|
|
|
|
```bash
|
|
git clone https://github.com/status-im/nimbus-eth1.git
|
|
cd nimbus-eth1
|
|
git checkout GIT_COMMIT
|
|
make update
|
|
make dist
|
|
```
|
|
|
|
## Significant differences from self-built binaries
|
|
|
|
No `-march=native`.
|
|
|