From a302a66f47f4c7e8cbfe131650d84ca3e6cadea3 Mon Sep 17 00:00:00 2001 From: "Luke T. Shumaker" Date: Sat, 14 Sep 2024 00:59:11 -0600 Subject: more --- CMakeLists.txt | 1 + README.md | 14 ++++++++++++++ 2 files changed, 15 insertions(+) create mode 100644 README.md diff --git a/CMakeLists.txt b/CMakeLists.txt index d9c005d..3334714 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,3 +11,4 @@ add_executable(hello_world hello_world.c) target_link_libraries(hello_world pico_stdlib) # create map/bin/hex/uf2 file in addition to ELF. pico_add_extra_outputs(hello_world) +pico_set_program_url(hello_world "https://git.lukeshu.com/sbc-harness") diff --git a/README.md b/README.md new file mode 100644 index 0000000..9bea066 --- /dev/null +++ b/README.md @@ -0,0 +1,14 @@ +# Building + +Building requires cmake, make, an "arm-none-eabi" toolchain (including +newlib), and picotool (including the .cmake files; +eg. /usr/lib/cmake/picotool/*.cmake). + +At the time of this writing, on Parabola GNU/Linux-libre that means: + + - make 4.4.1-2 + - cmake 3.30.3-1 + - arm-none-eabi-binutils 2.42-1 + - arm-none-eabi-gcc 14.1.0-1 + - arm-none-eabi-newlib 4.4.0.20231231-1 + - picotool 2.0.0-2 -- cgit v1.2.3-2-g168b