Getting started
This section details how to get started with Boost if you are a storage provider or as a client
Boost Version | Lotus Version |
---|---|
v1.0.0 | v1.15.x |
v1.1.0 | v1.16.x |
v1.1.1 | v1.16.x |
v1.2.0 | v1.16.x |
v1.3.0 | v1.17.0, v1.17.1 |
v1.4.0 | v1.17.0, v1.17.1, v1.17.2, v1.18.0-rc1 |
v1.5.0 | v1.18.0 |
v1.5.1-rc2 | v1.18.0, v1.19.0 |
Node 16.x
Linux / Ubuntu
curl -sL https://deb.nodesource.com/setup_16.x | sudo -E bash -
sudo apt-get install -y nodejs
sudo apt install mesa-opencl-icd ocl-icd-opencl-dev gcc git bzr jq pkg-config curl clang build-essential hwloc libhwloc-dev wget -y
MacOS
brew install [email protected]
brew install bzr jq pkg-config hwloc coreutils
Depending on your architecture, you will want to export additional environment variables:
export RUSTFLAGS="-C target-cpu=native -g"
export FFI_BUILD_FROM_SOURCE=1
git clone https://github.com/filecoin-project/boost
cd boost
make build
sudo make install
Please ignore any output or onscreen instruction during the
npm build
unless there is an error.export LIBRARY_PATH=$LIBRARY_PATH:/opt/homebrew/lib
git clone https://github.com/filecoin-project/boost
cd boost
make build
sudo make install
Please ignore any output or onscreen instruction during the
npm build
unless there is an error.To build boost for calibnet, please complete the above pre-requisites and build using the following commands.
git clone https://github.com/filecoin-project/boost
cd boost
make calibnet
1. Make sure that Boost daemon is not running. Run the below commands to upgrade the binary.
cd boost
git pull
make build
sudo make install
2. Please ignore any onscreen instruction during the
npm build
unless there is an error.3. Start the boost daemon.
1. Make sure that Boost daemon is not running. Run the below commands to upgrade the binary.
export LIBRARY_PATH=$LIBRARY_PATH:/opt/homebrew/lib
cd boost
git pull
make build
sudo make install
2. Please ignore any onscreen instruction during the
npm build
unless there is an error.3. Start the boost daemon.
Last modified 7d ago