File tree 4 files changed +48
-0
lines changed
4 files changed +48
-0
lines changed Original file line number Diff line number Diff line change @@ -31,3 +31,6 @@ tools/chain-util/chain-util
31
31
// IDE (vscode)
32
32
.vscode
33
33
debug.test
34
+
35
+ // HomeBrew
36
+ Brewfile.lock.json
Original file line number Diff line number Diff line change
1
+ brew 'jq'
2
+ brew 'golang'
3
+ brew 'rust'
4
+ brew 'pkg-config'
5
+ brew 'gcc'
Original file line number Diff line number Diff line change @@ -57,6 +57,11 @@ Windows is not yet supported.
57
57
A validating node can run on most systems with at least 8GB of RAM.
58
58
A mining node requires significant RAM and GPU resources, depending on the sector configuration to be used.
59
59
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
+
60
65
### Install from Source
61
66
62
67
Clone this git repository to your machine:
Original file line number Diff line number Diff line change
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
You can’t perform that action at this time.
0 commit comments