mirror of
https://github.com/polhenarejos/pico-hsm.git
synced 2026-01-17 09:28:05 +00:00
8 lines
219 B
Bash
Executable file
8 lines
219 B
Bash
Executable file
#!/bin/bash
|
|
|
|
apt install cmake gcc-arm-none-eabi libnewlib-arm-none-eabi libstdc++-arm-none-eabi-newlib
|
|
git clone https://github.com/raspberrypi/pico-sdk
|
|
mkdir build
|
|
cd build
|
|
cmake .. -DDPICO_SDK_PATH=../pico-sdk
|
|
make
|