blob: 697933eee8aec667a110843097294fc190779a86 [file] [log] [blame]
#!/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_load_store=' >/dev/null || echo $t
done
}
main