delve/Documentation/installation/osx/install.md
aarzilli fbd152f6a8 Documentation: remove homebrew as an install method
The formula is broken and produces an endless stream of duplicate bug
reports yet nobody steps up to fix it. Using the formula isn't
necessary and hasn't been in almost a year, the maintainers of delve
aren't using it and the original maintainer of the formula vacated.
2018-03-05 10:10:17 -08:00

30 lines
807 B
Markdown

# Installation on OSX
Please use the following steps to build and install Delve on OSX.
## Manual install
Ensure you have a proper compilation toolchain.
This should be as simple as:
`xcode-select --install`
Now you can install delve using `go get`:
```
$ go get -u github.com/derekparker/delve/cmd/dlv
```
With this method you will not be able to use delve's native backend.
Alternatively, you can clone the repo and run:
```
$ make install
```
The makefile will take care of creating and installing a self-signed certificate automatically.
Note: If you are using Go 1.5 you must set `GO15VENDOREXPERIMENT=1` before continuing. The `GO15VENDOREXPERIMENT` env var simply opts into the [Go 1.5 Vendor Experiment](https://docs.google.com/document/d/1Bz5-UB7g2uPBdOx-rw5t9MxJwkfpx90cqG9AFL0JAYo/).