Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 3edab86

Browse files
committedJun 15, 2015
adjust msys2 setup steps
[av skip]
1 parent c37be60 commit 3edab86

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed
 

‎README.windows.md

+7-8
Original file line numberDiff line numberDiff line change
@@ -61,19 +61,18 @@ or edit `%USERPROFILE%\.gitconfig` and add/edit the lines:
6161

6262
3. Install and configure [MSYS2](https://msys2.github.io), a minimal POSIX-like environment for Windows.
6363

64-
1. Download the latest installer for the [32-bit](http://sourceforge.net/projects/msys2/files/Base/i686/) or [64-bit](http://sourceforge.net/projects/msys2/files/Base/x86_64/) distribution. The installer will have a name like `msys2-i686-yyyymmdd.exe` or `msys2-x86_64-yyyymmdd.exe`.
64+
1. Download and run the latest installer for the [32-bit](http://sourceforge.net/projects/msys2/files/Base/i686/) or [64-bit](http://sourceforge.net/projects/msys2/files/Base/x86_64/) distribution. The installer will have a name like `msys2-i686-yyyymmdd.exe` or `msys2-x86_64-yyyymmdd.exe`.
6565

66-
2. Double-click `msys2_shell.bat` in the installed msys directory. This will initialize MSYS2. The shell will tell you to `exit` and restart the shell. For now, ignore it.
67-
68-
3. Update MSYS2 and install packages required to build julia, using the `pacman` package manager included in MSYS2:
66+
2. Double-click `msys2_shell.bat` in the installed msys directory. Initialize the MSYS2 base system using the `pacman` package manager included in MSYS2:
6967

7068
```
71-
pacman-key --init #Download keys
72-
pacman -Syu #Update package database and full system upgrade
69+
pacman --needed -Sy bash pacman pacman-mirrors msys2-runtime
7370
```
74-
Now `exit` the MSYS2 shell and restart it, *even if you already restarted it above*. This is necessary in case the system upgrade updated the main MSYS2 libs. Reopen the MSYS2 shell and continue with:
71+
72+
3. Exit and restart MSYS2, then install packages required to build julia:
7573

7674
```
75+
pacman -Syu #Update package database and full system upgrade
7776
pacman -S diffutils git m4 make patch tar p7zip msys/openssh
7877
```
7978

@@ -91,7 +90,7 @@ or edit `%USERPROFILE%\.gitconfig` and add/edit the lines:
9190
5. Configuration of MSYS2 is complete. Now `exit` the MSYS2 shell.
9291

9392
4. Build Julia and its dependencies from source.
94-
1. Get the Julia sources
93+
1. Open a new MSYS2 shell and get the Julia sources
9594
```
9695
git clone https://github.com/JuliaLang/julia.git
9796
cd julia

0 commit comments

Comments
 (0)
Please sign in to comment.