File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -105,6 +105,40 @@ source code into a binary program RP2040’s processors can understand. `build-e
105105to build code native to your own machine — this is needed for some internal tools in MicroPython and the SDK. You can
106106install all of these via ` apt ` from the command line. Anything you already have installed will be ignored by ` apt `
107107
108+ Linux:
109+ ``` shell
110+ sudo apt update
111+ sudo apt install cmake gcc-arm-none-eabi libnewlib-arm-none-eabi build-essential
112+ ```
113+
114+ Macos
115+ ``` shell
116+ brew update
117+ brew install cmake
118+ xcode-select --install
119+ ```
120+
121+ Install ` gcc-arm-none-eabi `
122+ https://developer.arm.com/downloads/-/gnu-rm
123+
124+ Add to PATH
125+ ``` shell
126+ sudo nano /etc/paths
127+ ```
128+ For example the path could be: /Applications/ARM/bin
129+
130+ The /etc/paths file is a list of paths to search. It should now look something like:
131+ ```
132+ /usr/local/bin
133+ /System/Cryptexes/App/usr/bin
134+ /usr/bin
135+ /bin
136+ /usr/sbin
137+ /sbin
138+ /Applications/ARM/bin
139+ ```
140+
141+
108142``` bash
109143git clone https://github.com/twhoekstra/nb2211-micropython.git
110144cd nb2211-micropython/
You can’t perform that action at this time.
0 commit comments