Skip to content

Commit

Permalink
fix: msys2 dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
lovettchris committed Sep 20, 2021
1 parent b8dc8e2 commit 1fcea20
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
- name: Install MSYS2
uses: msys2/setup-msys2@v2
with:
install: make python mingw-w64-x86_64-cmake mingw-w64-x86_64-clang mingw-w64-x86_64-ccache git diffutils
install: make python mingw-w64-x86_64-cmake mingw-w64-x86_64-clang mingw-w64-x86_64-ccache git unzip diffutils binutils
if: matrix.os == 'windows-latest'
- name: Install Brew Packages
run: |
Expand Down
2 changes: 1 addition & 1 deletion doc/make/msys2.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ MSYS2 has a package management system, [pacman][pacman], which is used in Arch L
Here are the commands to install all dependencies needed to compile Lean on your machine.

```bash
pacman -S make mingw-w64-x86_64-cmake mingw-w64-x86_64-ccache mingw-w64-x86_64-gcc git unzip binutils
pacman -S make python mingw-w64-x86_64-cmake mingw-w64-x86_64-clang mingw-w64-x86_64-ccache git unzip diffutils binutils

This comment has been minimized.

Copy link
@Kha

Kha Sep 20, 2021

Member

Why do we need Python?

This comment has been minimized.

Copy link
@lovettchris

lovettchris Sep 20, 2021

Author Contributor

Don't know I just copied it from ci.yml, presumably the ci needs it for something?

This comment has been minimized.

Copy link
@Kha

Kha Sep 20, 2021

Member

Ah yes, it does. Oh well, I'm fine with keeping the two lists in sync.

This comment has been minimized.

Copy link
@lovettchris

lovettchris Sep 20, 2021

Author Contributor

yes I figured it would be easier to maintain if they are kept the same...

```

You should now be able to run these commands:
Expand Down

0 comments on commit 1fcea20

Please sign in to comment.