mirror of
https://github.com/rust-embedded/heapless.git
synced 2025-09-30 05:50:29 +00:00
10 lines
131 B
Bash
10 lines
131 B
Bash
set -euxo pipefail
|
|
|
|
main() {
|
|
if [ $TARGET != x86_64-unknown-linux-gnu ]; then
|
|
rustup target add $TARGET
|
|
fi
|
|
}
|
|
|
|
main
|