Skip to content
Snippets Groups Projects
Select Git revision
  • 692bd418f1a4d25e903f0c1ce818f6e70e536562
  • master default protected
  • string
  • list
  • v0.2.1
  • v0.2.0
  • v0.1.0
7 results

vec.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