diff --git a/tasks/install-prereqs.yml b/tasks/install-prereqs.yml index 09f3e2b..1669329 100644 --- a/tasks/install-prereqs.yml +++ b/tasks/install-prereqs.yml @@ -91,6 +91,7 @@ - automake - zlib-devel - bzip2 + - llvm - bzip2-devel - readline-devel - sqlite diff --git a/tasks/install-rust.yml b/tasks/install-rust.yml index 7585b8c..a228740 100644 --- a/tasks/install-rust.yml +++ b/tasks/install-rust.yml @@ -81,38 +81,3 @@ RUSTUP_HOME: "{{ rustup_home }}" changed_when: true when: "'no toolchains found' in rust_toolchain_installed.stdout" - -- name: Install common Rust build dependencies for Debian based systems - become: true - ansible.builtin.apt: - name: build-essential - state: present - when: ansible_facts.os_family == 'Debian' - -- name: Install common Rust build dependencies for RedHat based systems - become: true - ansible.builtin.dnf: - name: - - cmake - - automake - - gcc - state: present - when: ansible_facts.os_family == 'RedHat' - -- name: Install common Rust build dependencies for Arch - community.general.pacman: - name: - - cmake - - gcc - - automake - state: present - when: ansible_facts.distribution == 'Archlinux' - -- name: Install common Rust build dependencies for MacOS - community.general.homebrew: - name: - - make - - gcc - - llvm - state: present - when: ansible_facts.distribution == 'MacOSX'