diff options
author | Will Jiang <20015jjw@users.noreply.github.com> | 2017-09-06 10:36:47 -0700 |
---|---|---|
committer | skullydazed <skullydazed@users.noreply.github.com> | 2017-09-06 10:36:47 -0700 |
commit | 0ce45eb0b7ad0af28de4418906543c51dbc505cc (patch) | |
tree | 5ff354a7d4b3c7be2c4797a02bb9838661b55076 /docs | |
parent | 85c3c5926ca0d47e5c3a8c58a12947f2ea69cd30 (diff) |
Update mac guide (#1665)
`avr-libc` is no longer, and it's called `avr-gcc` now. https://github.com/osx-cross/homebrew-avr
Also you need `gcc-arc-none-eabi` to be able to compile in my experience.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/getting_started_build_tools.md | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/getting_started_build_tools.md b/docs/getting_started_build_tools.md index e46b7f2e53..10c0b6984d 100644 --- a/docs/getting_started_build_tools.md +++ b/docs/getting_started_build_tools.md @@ -40,8 +40,11 @@ Debian/Ubuntu example: If you're using [homebrew,](http://brew.sh/) you can use the following commands: brew tap osx-cross/avr - brew install avr-libc + brew tap PX4/homebrew-px4 + brew update + brew install avr-gcc brew install dfu-programmer + brew install gcc-arm-none-eabi This is the recommended method. If you don't have homebrew, [install it!](http://brew.sh/) It's very much worth it for anyone who works in the command line. Note that the `make` and `make install` portion during the homebrew installation of avr-libc can take over 20 minutes and exhibit high CPU usage. |