提交 b935cbc1 作者: Jeromy Johnson 提交者: GitHub

Merge pull request #3719 from ipfs/feat/makefile/install-unsupported

Add install_unsupported
...@@ -91,21 +91,10 @@ export PATH=$PATH:$GOPATH/bin ...@@ -91,21 +91,10 @@ export PATH=$PATH:$GOPATH/bin
#### Download and Compile IPFS #### Download and Compile IPFS
go-ipfs differs from the vanilla `go get` flow: it uses
[gx](https://github.com/whyrusleeping/gx)/[gx-go](https://github.com/whyrusleeping/gx-go)
for dependency management.
First download `go-ipfs` without installing:
``` ```
$ go get -u -d github.com/ipfs/go-ipfs $ go get -u -d github.com/ipfs/go-ipfs
$ cd $GOPATH/src/github.com/ipfs/go-ipfs $ cd $GOPATH/src/github.com/ipfs/go-ipfs
```
Then install `go-ipfs` and its dependencies, including `gx` and `gx-go`:
```
$ make install $ make install
``` ```
...@@ -113,16 +102,14 @@ $ make install ...@@ -113,16 +102,14 @@ $ make install
If your operating system isn't officially supported, but you still want to try If your operating system isn't officially supported, but you still want to try
building ipfs anyways (it should work fine in most cases), you can do the building ipfs anyways (it should work fine in most cases), you can do the
following: following instead of `make install`:
- Install gx: `go get -u github.com/whyrusleeping/gx` ```
- Install gx-go: `go get -u github.com/whyrusleeping/gx-go` $ make install_unsupported
- Fetch ipfs source: `go get -d github.com/ipfs/go-ipfs 2> /dev/null` ```
- Enter source directory: `cd $GOPATH/src/github.com/ipfs/go-ipfs`
- Install deps: `gx install`
- Install ipfs: `go install ./cmd/ipfs`
Note: This process may break if [gx](https://github.com/whyrusleeping/gx) or any of its dependencies break as `go get` Note: This process may break if [gx](https://github.com/whyrusleeping/gx)
(used for dependency management) or any of its dependencies break as `go get`
will always select the latest code for every dependency, often resulting in will always select the latest code for every dependency, often resulting in
mismatched APIs. mismatched APIs.
......
...@@ -102,6 +102,17 @@ install: $$(DEPS_GO) ...@@ -102,6 +102,17 @@ install: $$(DEPS_GO)
go install $(go-flags-with-tags) ./cmd/ipfs go install $(go-flags-with-tags) ./cmd/ipfs
.PHONY: install .PHONY: install
install_unsupported:
@echo "note: this command has yet to be tested to build in the system you are using"
@echo "installing gx"
go get -u github.com/whyrusleeping/gx
go get -u github.com/whyrusleeping/gx-go
@echo downloading dependencies
gx install --global
@echo "installing go-ipfs"
go install ./cmd/ipfs
.PHONY: install_unsupported
uninstall: uninstall:
go clean -i ./cmd/ipfs go clean -i ./cmd/ipfs
.PHONY: uninstall .PHONY: uninstall
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论