commit d92ef59f242d3dd8ff19a5a3eec048bd5d2b9f04 parent 9614c3adfa2fafd1038a361f4c209392cd11180b Author: Ryan <fauxpark@gmail.com> Date: Fri, 1 Sep 2023 09:26:48 +1000 Update macOS install script (#21854) Diffstat:
| M | util/install/macos.sh | | | 7 | ++++++- |
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git 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 }