You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
configure: Check for valid Python on MinGW as well
The LLVM build system is somewhat picky about which Python is used to build it
as it's known to be incompatible with the default `python2` package that ships
with MinGW. This was previously detected for MSVC builds but the logic was left
out for MinGW by accident (now that we've switched to cmake builds for LLVM
everywhere).
This corrects the `./configure` check and also updates the `README.md`
accordingly. Additionally, a number of instructions were updated to work with
the most recent copy of MSYS2.
Closes#34489
Copy file name to clipboardexpand all lines: README.md
+22-22
Original file line number
Diff line number
Diff line change
@@ -64,37 +64,37 @@ build.
64
64
65
65
#### MinGW
66
66
67
-
[MSYS2](http://msys2.github.io/) can be used to easily build Rust on Windows:
67
+
[MSYS2][msys2] can be used to easily build Rust on Windows:
68
68
69
-
1. Grab the latest MSYS2 installer and go through the installer.
69
+
msys2: https://msys2.github.io/
70
70
71
-
2. From the MSYS2 terminal, install the `mingw64` toolchain and other required
72
-
tools.
71
+
1. Grab the latest [MSYS2 installer][msys2] and go through the installer.
73
72
74
-
```sh
75
-
# Update package mirrors (may be needed if you have a fresh install of MSYS2)
76
-
$ pacman -Sy pacman-mirrors
77
-
```
73
+
2. Run `mingw32_shell.bat` or `mingw64_shell.bat` from wherever you installed
74
+
MSYS2 (i.e. `C:\msys64`), depending on whether you want 32-bit or 64-bit
75
+
Rust. (As of the latest version of MSYS2 you have to run `msys2_shell.cmd
76
+
-mingw32` or `msys2_shell.cmd -mingw64` from the command line instead)
78
77
79
-
Download [MinGW from
80
-
here](http://mingw-w64.org/doku.php/download/mingw-builds), and choose the
81
-
`version=4.9.x,threads=win32,exceptions=dwarf/seh` flavor when installing. Also, make sure to install to a path without spaces in it. After installing,
82
-
add its `bin` directory to your `PATH`. This is due to [#28260](https://github.com/rust-lang/rust/issues/28260), in the future,
83
-
installing from pacman should be just fine.
78
+
3. From this terminal, install the required tools:
84
79
85
80
```sh
86
-
# Make git available in MSYS2 (if not already available on path)
87
-
$ pacman -S git
81
+
# Update package mirrors (may be needed if you have a fresh install of MSYS2)
82
+
$ pacman -Sy pacman-mirrors
88
83
89
-
$ pacman -S base-devel
84
+
# Install build tools needed for Rust. If you're building a 32-bit compiler,
85
+
# then replace "x86_64" below with "i686". If you've already got git, python,
86
+
# or CMake installed and in PATH you can remove them from this list. Note
87
+
# that it is important that the `python2` and `cmake` packages **not** used.
88
+
# The build has historically been known to fail with these packages.
89
+
$ pacman -S git \
90
+
make \
91
+
diffutils \
92
+
mingw-w64-x86_64-python2 \
93
+
mingw-w64-x86_64-cmake \
94
+
mingw-w64-x86_64-gcc
90
95
```
91
96
92
-
3. Run `mingw32_shell.bat` or `mingw64_shell.bat` from wherever you installed
93
-
MSYS2 (i.e. `C:\msys`), depending on whether you want 32-bit or 64-bit Rust.
94
-
(As of the latest version of MSYS2 you have to run `msys2_shell.cmd -mingw32`
95
-
or `msys2_shell.cmd -mingw64` from the command line instead)
96
-
97
-
4. Navigate to Rust's source code, configure and build it:
97
+
4. Navigate to Rust's source code (or clone it), then configure and build it:
0 commit comments