Skip to content
Snippets Groups Projects
Select Git revision
  • 834fcb6a662717acf6115ec070c64fa4808db492
  • master default protected
2 results

exception.rs

Blame
  • install.sh 343 B
    set -euxo pipefail
    
    main() {
        if [ $TARGET = thumbv7em-none-eabihf ]; then
            local vers=0.3.7
    
            cargo install --list | grep "xargo v$vers" || \
                ( cd .. && cargo install xargo -f --vers $vers )
    
            rustup component list | grep 'rust-src.*installed' || \
                rustup component add rust-src
        fi
    }
    
    main