[ansible] rust-embedded

pull/28/head
Alpha Chen 5 years ago
parent 067598629c
commit 356ffd0060

@ -0,0 +1,27 @@
- hosts: all
tasks:
# https://rust-embedded.github.io/book/intro/install.html
- name: add rust target
command: rustup target add thumbv7em-none-eabihf
- name: install binutils
command: cargo install cargo-binutils
args:
creates: ~/.cargo/bin/cargo-size
- name: install llvm-tools-preview
command: rustup component add llvm-tools-preview
# https://rust-embedded.github.io/book/intro/install/macos.html
- name: install gcc-arm-embedded
homebrew:
name: armmbed/formulae/arm-none-eabi-gcc
- name: install openocd and qemu
homebrew:
name:
- openocd
- qemu

@ -1,4 +1,3 @@
# - hosts: os_MacOSX
- hosts: all - hosts: all
tasks: tasks:
- name: install rustup - name: install rustup

Loading…
Cancel
Save