From 3068b6e7169bba854d142cd753dc0f30faa5120c Mon Sep 17 00:00:00 2001 From: Janek Bevendorff Date: Sun, 29 Jan 2017 13:13:07 +0100 Subject: [PATCH] Updated Set up Build Environment on Windows (markdown) --- Set-up-Build-Environment-on-Windows.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Set-up-Build-Environment-on-Windows.md b/Set-up-Build-Environment-on-Windows.md index d3ad9c3..a65675c 100644 --- a/Set-up-Build-Environment-on-Windows.md +++ b/Set-up-Build-Environment-on-Windows.md @@ -1,4 +1,4 @@ -### Install the building environment +### Install the build environment * Download MSYS2 64bit: http://msys2.github.io/ * Start MSYS2 shell @@ -6,7 +6,7 @@ * Restart MSYS2 shell * Update all packages: `pacman -Syu`
If tells you to close the shell, close and reupdate the package (until you are done) -### Install the building toolchain +### Install the C++ toolchain This command will install the MinGW-W GCC compiler, CMake and Binutils @@ -32,10 +32,10 @@ Then add this line to your `/etc/profile` and restart your terminal: export PATH="/mingw64/bin/:$PATH" ``` -### Update you Environment regularly +### Update you environment regularly Open a MSYS2 shell: ``` -pacman -Syu +pacman -Syyuu ```