13 lines
337 B
Bash
Executable file
13 lines
337 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,smoltcp/defmt)
|
|
|
|
# build examples
|
|
(cd embassy-net-examples; cargo build)
|