From 8095a086d7c376078aa1cbff3af4849101265255 Mon Sep 17 00:00:00 2001 From: Robert Quattlebaum Date: Tue, 19 Jul 2022 14:35:19 -0700 Subject: [PATCH] [bootstrap] Explicitly use arm-none-eabi-gcc from armmbed (#7917) The bootstrap script taps `armmbed/formulae`, and then tries to install `arm-none-eabi-gcc` from that tap. However, if the user has already tapped a different tap that offers `arm-none-eabi-gcc`, then the install will fail. This change removes the ambiguity of the install by specifying the tap to use. --- script/bootstrap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/bootstrap b/script/bootstrap index 688db8990..9a4479c35 100755 --- a/script/bootstrap +++ b/script/bootstrap @@ -100,7 +100,7 @@ install_packages_brew() # add ARM toolchain brew tap ArmMbed/homebrew-formulae - brew install arm-none-eabi-gcc + brew install armmbed/formulae/arm-none-eabi-gcc # check for gcc for simulation if ! command -v gcc; then