Skip to content

Commit 7d9948e

Browse files
zeroeccoRichard HowardZenGround0
authored
[feature] add MacOS build script, docs, and homebrew deps (#3734)
Co-authored-by: Richard Howard <[email protected]> Co-authored-by: ZenGround0 <[email protected]>
1 parent 7312cbc commit 7d9948e

File tree

4 files changed

+48
-0
lines changed

4 files changed

+48
-0
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,6 @@ tools/chain-util/chain-util
3131
// IDE (vscode)
3232
.vscode
3333
debug.test
34+
35+
// HomeBrew
36+
Brewfile.lock.json

Brewfile

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
brew 'jq'
2+
brew 'golang'
3+
brew 'rust'
4+
brew 'pkg-config'
5+
brew 'gcc'

README.md

+5
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,11 @@ Windows is not yet supported.
5757
A validating node can run on most systems with at least 8GB of RAM.
5858
A mining node requires significant RAM and GPU resources, depending on the sector configuration to be used.
5959

60+
### Install from Source on MacOS
61+
```sh
62+
curl -fsSL https://raw.githubusercontent.com/filecoin-project/go-filecoin/master/scripts/build/mac-build.sh
63+
```
64+
6065
### Install from Source
6166

6267
Clone this git repository to your machine:

scripts/build/mac-build.sh

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
#!/usr/bin/env bash
2+
set -Eeou pipefail
3+
4+
export CC=gcc
5+
6+
if [ -z "$GOPATH" ]; then
7+
echo 'no GOPATH set using ~'
8+
export GOPATH=~
9+
fi
10+
11+
base_build_path=${GOPATH}/src/github.com/filecoin-project
12+
build_path=${base_build_path}/go-filecoin
13+
14+
mkdir -p ${base_build_path}
15+
git clone https://github.com/filecoin-project/go-filecoin.git ${build_path}
16+
17+
if which brew; then
18+
echo 'HomeBrew found'
19+
else
20+
echo "Homebrew not found. Installing Homebrew"
21+
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
22+
echo 'HomeBrew found'
23+
fi
24+
25+
echo 'installing HomeBrew dependencies'
26+
brew bundle --file=${build_path}/Brewfile --verbose
27+
28+
cd ${build_path} || exit 1
29+
echo 'pulling down submodules'
30+
git submodule update --init --recursive
31+
32+
echo 'build go-filecoin dependencies'
33+
FILECOIN_USE_PRECOMPILED_RUST_PROOFS=true go run ${build_path}/build deps
34+
35+
go run ${build_path}/build build

0 commit comments

Comments
 (0)