From f59ba9e57862da809d4bb425a316454b9e2b9e57 Mon Sep 17 00:00:00 2001 From: Stephen Houser Date: Fri, 23 Aug 2024 10:43:37 -0400 Subject: [PATCH] Update setup instructions for macOS The preferred method for installing the ARM toolchain has changed. The method currently shown results in a compilation failure: ``` arm-none-eabi-gcc: fatal error: cannot read spec file 'nosys.specs': No such file or directory ``` Refer to [pico-sdk issue 1529](https://github.com/raspberrypi/pico-sdk/issues/1529) --- setting-up-the-pico-sdk.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/setting-up-the-pico-sdk.md b/setting-up-the-pico-sdk.md index 0a2f634a..2cb07927 100644 --- a/setting-up-the-pico-sdk.md +++ b/setting-up-the-pico-sdk.md @@ -40,8 +40,7 @@ sudo apt install cmake gcc-arm-none-eabi build-essential brew install cmake # Install the arm eabi toolchain -brew tap ArmMbed/homebrew-formulae -brew install arm-none-eabi-gcc +brew install --cask gcc-arm-embedded # The equivalent to build-essential on linux, you probably already have this. xcode-select --install