Fixed commands for installing build tools and deps

presentation
Jonas Erbe 7 years ago committed by GitHub
parent f697ba6139
commit 673b7de996
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 15
      readme/WindowsBuild.md

@ -31,10 +31,11 @@ pacman -S git
## Install Build tools
```bash
pacman -S mingw-w64-x86_64-cmake \
pacman -S make \
pacman -S mingw-w64-x86_64-toolchain \
pacman -S --needed base-devel mingw-w64-x86_64-toolchain mingw-w64-x86_64-cmake
pacman -S mingw-w64-x86_64-cmake; \
pacman -S make; \
pacman -S mingw-w64-x86_64-toolchain; \
pacman -S --needed base-devel mingw-w64-x86_64-toolchain \
mingw-w64-x86_64-cmake
```
(this is a duplicate of the lines above, probably only this line is needed.
Can anybody confirm this?)
@ -47,9 +48,9 @@ pacman -S mingw-w64-x86_64-gcc
## Install dependencies
```bash
pacman -S mingw-w64-x86_64-poppler \
pacman -S mingw-w64-x86_64-gtk3 \
pacman -S mingw-w64-x86_64-libsndfile \
pacman -S mingw-w64-x86_64-poppler; \
pacman -S mingw-w64-x86_64-gtk3; \
pacman -S mingw-w64-x86_64-libsndfile; \
pacman -S mingw-w64-x86_64-libzip
```

Loading…
Cancel
Save