Lines Matching refs:build
3 The Raspberry Pi Pico SDK (henceforth the SDK) provides the headers, libraries and build system
13 The SDK can be used to build anything from simple applications, fully-fledged runtime environments such as MicroPython, to low level software
23 hardware, IDE/environment and how to build and debug software for the Raspberry Pi Pico and other RP-series microcontroller based devices.
35 See [pico-examples](https://github.com/raspberrypi/pico-examples) for example code you can build.
56 sudo apt install cmake python3 build-essential gcc-arm-none-eabi libnewlib-arm-none-eabi libstdc++-arm-none-eabi-newlib
177 1. Setup a CMake build directory.
180 $ mkdir build
181 $ cd build
185 When building for a board other than the Raspberry Pi Pico, you should pass `-DPICO_BOARD=board_name` to the `cmake` command above, e.g. `cmake -DPICO_BOARD=pico2 ..` or `cmake -DPICO_BOARD=pico_w ..` to configure the SDK and build options accordingly for that particular board.
194 1. Make your target from the build directory you created.
203 See [Raspberry Pi Pico-series C/C++ SDK](https://rptl.io/pico-c-sdk) for information on setting up a build environment for RISC-V on RP2350.