[ansible] update rust-embedded requirements

pull/28/head
Alpha Chen 5 years ago
parent 5a66beaba7
commit 167f94a74c

@ -1,27 +1,34 @@
- hosts: all - hosts: all
tasks: tasks:
# https://rust-embedded.github.io/book/intro/install.html # https://docs.rust-embedded.org/discovery/03-setup/index.html
- name: add rust target - name: install cargo dependencies
command: rustup target add thumbv7em-none-eabihf command: cargo install {{ item.key }}
args:
creates: ~/.cargo/bin/{{ item.value }}
with_dict:
itm: itmdump
cargo-binutils: cargo-size
- name: install binutils - name: add rust target
command: cargo install cargo-binutils command: rustup target add thumbv7em-none-eabihf
args:
creates: ~/.cargo/bin/cargo-size
- name: install llvm-tools-preview # Is this really necessary?
command: rustup component add llvm-tools-preview - name: install llvm-tools-preview
command: rustup component add llvm-tools-preview
# https://rust-embedded.github.io/book/intro/install/macos.html # https://rust-embedded.github.io/book/intro/install/macos.html
# https://docs.rust-embedded.org/discovery/03-setup/macos.html
- name: install gcc-arm-embedded - name: install gcc-arm-embedded
homebrew: homebrew:
name: armmbed/formulae/arm-none-eabi-gcc name: armmbed/formulae/arm-none-eabi-gcc
- name: install openocd and qemu - name: install brew dependencies
homebrew: homebrew:
name: name:
- openocd - gdb
- qemu - minicom
- openocd
- qemu

Loading…
Cancel
Save