panic-semihosting 0.5.3

Report panic messages to the host stderr using semihosting
Documentation
set -euxo pipefail

main() {
    cargo check --target $TARGET

    if [ $TRAVIS_RUST_VERSION = nightly ]; then
        cargo check --target $TARGET --features inline-asm
    fi
}

main