mirror of
https://github.com/rust-embedded/heapless.git
synced 2025-09-27 12:30:35 +00:00
15 lines
214 B
Bash
15 lines
214 B
Bash
#!/bin/bash
|
|
|
|
set -euo pipefail
|
|
|
|
main() {
|
|
IFS='
|
|
'
|
|
for t in $(rustc --print target-list); do
|
|
rustc +nightly --print cfg --target $t | grep 'target_has_atomic=' >/dev/null || echo $t
|
|
done
|
|
|
|
}
|
|
|
|
main
|