Open
Conversation
LouDnl
reviewed
Jan 14, 2026
| > git clone --recurse-submodules https://github.com/raspberrypi/pico-extras | ||
| > export PICO_SDK_PATH=`pwd`/pico-sdk | ||
| > export PICO_EXTRAS_PATH=`pwd`/pico-extras | ||
| > git clone --recurse-submodules https://github.com/raspberrypi/picotool picotool-src |
Owner
There was a problem hiding this comment.
picotool is actually not needed as download, the build process will download this by itself if not found on path. Here's an example:
cmake -S $(pwd)/repo -B build_test -DPICO_BOARD=pico -DPICO_PLATFORM=rp2040
-- LOG_LEVEL is DEBUG
<snip>
-- Set USB product: USBSID-Pico v1.0
CMake Warning at /home/loud/Development/pi/pico-sdk/tools/Findpicotool.cmake:30 (message):
No installed picotool with version 2.1.1 found - building from source
It is recommended to build and install picotool separately, or to set
PICOTOOL_FETCH_FROM_GIT_PATH to a common directory for all your SDK
projects
Call Stack (most recent call first):
/home/loud/Development/pi/pico-sdk/tools/CMakeLists.txt:168 (find_package)
/home/loud/Development/pi/pico-sdk/tools/CMakeLists.txt:688 (pico_init_picotool)
/home/loud/Development/pi/pico-sdk/src/cmake/on_device.cmake:81 (picotool_postprocess_binary)
CMakeLists.txt:633 (pico_add_extra_outputs)
Downloading Picotool
Using picotool from /home/loud/Development/c64/USBSID-Pico-dev/build_test/_deps/picotool/picotool
<snip>
Owner
|
Can you move this into a new markdown file in the |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This updates the Build section of the README.md with up-to-date instructions how to build for a RP2040-based device in Release mode.