diff options
author | QMK Bot <hello@qmk.fm> | 2023-08-31 23:27:22 +0000 |
---|---|---|
committer | QMK Bot <hello@qmk.fm> | 2023-08-31 23:27:22 +0000 |
commit | b0f5eb8f00c0fd1b8be2a88ba7c31898e8408a32 (patch) | |
tree | db196a96a20d8db40449054017df5fa8067da1bd | |
parent | 367b8e09d9c7d4aa62e49eedac0d66fb72414c38 (diff) | |
parent | d92ef59f242d3dd8ff19a5a3eec048bd5d2b9f04 (diff) |
Merge remote-tracking branch 'origin/master' into develop
-rwxr-xr-x | util/install/macos.sh | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/util/install/macos.sh b/util/install/macos.sh index 870b4bec94..8890c5a3f0 100755 --- a/util/install/macos.sh +++ b/util/install/macos.sh @@ -19,8 +19,13 @@ _qmk_install() { # https://github.com/qmk/homebrew-qmk brew install qmk/qmk/qmk + # Conflicts with new toolchain formulae + brew uninstall --ignore-dependencies arm-gcc-bin@8 >/dev/null 2>&1 + + # Keg-only, so need to be manually linked brew link --force avr-gcc@8 - brew link --force arm-gcc-bin@8 + brew link --force arm-none-eabi-binutils + brew link --force arm-none-eabi-gcc@8 python3 -m pip install -r $QMK_FIRMWARE_DIR/requirements.txt } |