145 lines
2.1 KiB
Bash
145 lines
2.1 KiB
Bash
for target in \
|
|
adafruit-esp32-feather-v2 \
|
|
ae-rp2040 \
|
|
arduino-leonardo \
|
|
arduino-mega1280 \
|
|
arduino-mega2560 \
|
|
arduino-mkr1000 \
|
|
arduino-mkrwifi1010 \
|
|
arduino-nano-new \
|
|
arduino-nano \
|
|
arduino-nano33 \
|
|
arduino-zero \
|
|
arduino \
|
|
atmega1284p \
|
|
atmega328pb \
|
|
atsamd21e18a \
|
|
atsamd21g18a \
|
|
atsamd51g19a \
|
|
atsamd51j19a \
|
|
atsamd51j20a \
|
|
atsamd51p19a \
|
|
atsamd51p20a \
|
|
atsame51j19a \
|
|
atsame54-xpro \
|
|
atsame54p20a \
|
|
attiny1616 \
|
|
badger2040-w \
|
|
badger2040 \
|
|
bluepill-clone \
|
|
bluepill \
|
|
btt-skr-pico \
|
|
challenger-rp2040 \
|
|
circuitplay-express \
|
|
cortex-m-qemu \
|
|
cortex-m0 \
|
|
cortex-m0plus \
|
|
cortex-m3 \
|
|
cortex-m33 \
|
|
cortex-m4 \
|
|
cortex-m7 \
|
|
d1mini \
|
|
digispark \
|
|
elecrow-rp2040 \
|
|
elecrow-rp2350 \
|
|
esp-c3-32s-kit \
|
|
esp32-c3-devkit-rust-1 \
|
|
esp32-coreboard-v2 \
|
|
esp32-mini32 \
|
|
esp32 \
|
|
esp32c3-12f \
|
|
esp32c3-supermini \
|
|
esp32c3 \
|
|
esp8266 \
|
|
feather-m0-express \
|
|
feather-m0 \
|
|
feather-m4-can \
|
|
feather-m4 \
|
|
feather-rp2040 \
|
|
feather-stm32f405 \
|
|
gemma-m0 \
|
|
gnse \
|
|
gobadge \
|
|
gopher-badge \
|
|
gopherbot \
|
|
grandcentral-m4 \
|
|
hifive1b \
|
|
itsybitsy-m0 \
|
|
itsybitsy-m4 \
|
|
kb2040 \
|
|
lgt92 \
|
|
lorae5 \
|
|
m5paper \
|
|
m5stack-core2 \
|
|
m5stack \
|
|
m5stamp-c3 \
|
|
m5stick-c \
|
|
macropad-rp2040 \
|
|
maixbit \
|
|
makerfabs-esp32c3spi35 \
|
|
matrixportal-m4 \
|
|
mch2022 \
|
|
metro-m4-airlift \
|
|
mksnanov3 \
|
|
nano-rp2040 \
|
|
nodemcu \
|
|
nucleo-f103rb \
|
|
nucleo-f722ze \
|
|
nucleo-l031k6 \
|
|
nucleo-l432kc \
|
|
nucleo-l476rg \
|
|
nucleo-wl55jc \
|
|
p1am-100 \
|
|
pga2350 \
|
|
pico-plus2 \
|
|
pico-w \
|
|
pico \
|
|
pico2-w \
|
|
pico2 \
|
|
pybadge \
|
|
pygamer \
|
|
pyportal \
|
|
qtpy-esp32c3 \
|
|
qtpy-rp2040 \
|
|
qtpy \
|
|
riscv-qemu \
|
|
rp2350 \
|
|
rp2350b \
|
|
simavr \
|
|
stm32f469disco \
|
|
stm32f4disco-1 \
|
|
stm32f4disco \
|
|
stm32l0x2 \
|
|
stm32wl5x_cm4 \
|
|
stm32wle5 \
|
|
swan \
|
|
teensy36 \
|
|
teensy40 \
|
|
teensy41 \
|
|
thingplus-rp2040 \
|
|
thumby \
|
|
tiny2350 \
|
|
tkey \
|
|
trinket-m0 \
|
|
trinkey-qt2040 \
|
|
tufty2040 \
|
|
wasi \
|
|
wasip1 \
|
|
wasip2 \
|
|
wasm-unknown \
|
|
wasm \
|
|
waveshare-rp2040-tiny \
|
|
waveshare-rp2040-zero \
|
|
wioterminal \
|
|
xiao-esp32c3 \
|
|
xiao-rp2040 \
|
|
xiao; do
|
|
output=$(../../llgo.sh build -v -target $target -o hello.out . 2>&1)
|
|
if [ $? -eq 0 ]; then
|
|
echo ✅ $target `file hello.out`
|
|
else
|
|
echo ❌ $target
|
|
echo "$output"
|
|
fi
|
|
done
|