diff options
author | fauxpark <fauxpark@gmail.com> | 2019-11-30 11:44:18 +1100 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2019-11-29 16:44:18 -0800 |
commit | 77c04d148e6fd1bc0858373317b522aae2bf7784 (patch) | |
tree | 289e77e67f6948a1b8ab4806c1c1ada3e72b46a6 /util | |
parent | 90c74701aad2cac28dd40c54b0a5e150ba3eed60 (diff) | |
download | qmk_firmware-77c04d148e6fd1bc0858373317b522aae2bf7784.tar.gz qmk_firmware-77c04d148e6fd1bc0858373317b522aae2bf7784.zip |
Specify Arm GCC 8 in macOS install script (#7509)
Diffstat (limited to 'util')
-rwxr-xr-x | util/macos_install.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/util/macos_install.sh b/util/macos_install.sh index 76ec3355b4..a4037cce9e 100755 --- a/util/macos_install.sh +++ b/util/macos_install.sh @@ -24,8 +24,9 @@ fi brew tap osx-cross/avr brew tap osx-cross/arm brew update -brew install avr-gcc@8 arm-gcc-bin dfu-programmer avrdude clang-format dfu-util python3 +brew install avr-gcc@8 arm-gcc-bin@8 dfu-programmer avrdude clang-format dfu-util python3 brew install --HEAD https://raw.githubusercontent.com/robertgzr/homebrew-tap/master/bootloadhid.rb brew link --force avr-gcc@8 +brew link --force arm-gcc-bin@8 pip3 install -r "${util_dir}/../requirements.txt" |