Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs+mk: update guidance for unsupported platforms #6338

Merged
merged 1 commit into from
May 15, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,12 +138,15 @@ $ cd go-ipfs
$ make install
```

If you are building on FreeBSD instead of `make install` use `gmake install`.
If you are building on a non-GNU system, use `gmake` in place of `make`.
Unsupported platforms (run `(g)make supported` for a list) will also need to set the `nofuse` gotag during build.
```
$ GOTAGS=nofuse (g)make install
```

#### Troubleshooting

- Separate [instructions are available for building on Windows](docs/windows.md).
- Also, [instructions for OpenBSD](docs/openbsd.md).
- `git` is required in order for `go get` to fetch all dependencies.
- Package managers often contain out-of-date `golang` packages.
Ensure that `go version` reports at least 1.10. See above for how to install go.
Expand Down
5 changes: 5 additions & 0 deletions Rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,11 @@ uninstall:
$(GOCC) clean -i ./cmd/ipfs
.PHONY: uninstall

supported:
@echo "Currently supported platforms:"
@for p in ${SUPPORTED_PLATFORMS}; do echo $$p; done
.PHONY: supported

help:
@echo 'DEPENDENCY TARGETS:'
@echo ''
Expand Down
37 changes: 0 additions & 37 deletions docs/openbsd.md

This file was deleted.