mirror of
https://github.com/embassy-rs/embassy.git
synced 2024-11-22 14:53:03 +00:00
14 lines
323 B
Bash
Executable File
14 lines
323 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -euxo pipefail
|
|
|
|
# build for std
|
|
(cd embassy-net; cargo build --features log)
|
|
|
|
# build for embedded
|
|
(cd embassy-net; cargo build --target thumbv7em-none-eabi --features log)
|
|
(cd embassy-net; cargo build --target thumbv7em-none-eabi --features defmt)
|
|
|
|
# build examples
|
|
(cd embassy-net-examples; cargo build)
|