1
0
Fork 0

Make sure that avr-gcc@7 gets linked into the path on MacOS.

This commit is contained in:
Michael Kaylan 2018-11-12 11:20:56 -05:00 committed by Drashna Jaelre
parent 2509039abf
commit b1e74aee43
3 changed files with 3 additions and 1 deletions

View File

@ -126,5 +126,5 @@ For now, you need to rollback avr-gcc to 7 in brew.
```
brew uninstall --force avr-gcc
brew install avr-gcc@7
brew link avr-gcc@7
brew link --force avr-gcc@7
```

View File

@ -57,6 +57,7 @@ If you're using [homebrew,](http://brew.sh/) you can use the following commands:
brew tap PX4/homebrew-px4
brew update
brew install avr-gcc@7
brew link --force avr-gcc@7
brew install dfu-programmer
brew install dfu-util
brew install gcc-arm-none-eabi

View File

@ -23,3 +23,4 @@ brew tap osx-cross/avr
brew tap PX4/homebrew-px4
brew update
brew install avr-gcc@7 gcc-arm-none-eabi dfu-programmer avrdude dfu-util
brew link --force avr-gcc@7