File tree 3 files changed +10
-39
lines changed 3 files changed +10
-39
lines changed Original file line number Diff line number Diff line change @@ -138,12 +138,15 @@ $ cd go-ipfs
138
138
$ make install
139
139
```
140
140
141
- If you are building on FreeBSD instead of ` make install ` use ` gmake install ` .
141
+ If you are building on a non-GNU system, use ` gmake ` in place of ` make ` .
142
+ Unsupported platforms (run ` (g)make supported ` for a list) will also need to set the ` nofuse ` gotag during build.
143
+ ```
144
+ $ GOTAGS=nofuse (g)make install
145
+ ```
142
146
143
147
#### Troubleshooting
144
148
145
149
- Separate [ instructions are available for building on Windows] ( docs/windows.md ) .
146
- - Also, [ instructions for OpenBSD] ( docs/openbsd.md ) .
147
150
- ` git ` is required in order for ` go get ` to fetch all dependencies.
148
151
- Package managers often contain out-of-date ` golang ` packages.
149
152
Ensure that ` go version ` reports at least 1.10. See above for how to install go.
Original file line number Diff line number Diff line change @@ -108,6 +108,11 @@ uninstall:
108
108
$(GOCC ) clean -i ./cmd/ipfs
109
109
.PHONY : uninstall
110
110
111
+ supported :
112
+ @echo " Currently supported platforms:"
113
+ @for p in ${SUPPORTED_PLATFORMS} ; do echo $$ p; done
114
+ .PHONY : supported
115
+
111
116
help :
112
117
@echo ' DEPENDENCY TARGETS:'
113
118
@echo ' '
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments