Skip to content

Commit cb74a58

Browse files
committed
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
1 parent 7189ae3 commit cb74a58

File tree

2 files changed

+52
-49
lines changed

2 files changed

+52
-49
lines changed

README.md

+22-22
Original file line numberDiff line numberDiff line change
@@ -64,37 +64,37 @@ build.
6464
6565
#### MinGW
6666
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:
6868
69-
1. Grab the latest MSYS2 installer and go through the installer.
69+
msys2: https://msys2.github.io/
7070
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.
7372
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)
7877
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:
8479
8580
```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
8883
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
9095
```
9196
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:
9898
9999
```sh
100100
$ ./configure

configure

+30-27
Original file line numberDiff line numberDiff line change
@@ -1178,33 +1178,6 @@ do
11781178
;;
11791179

11801180
*-msvc)
1181-
# There are some MSYS python builds which will auto-translate
1182-
# windows-style paths to MSYS-style paths in Python itself.
1183-
# Unfortunately this breaks LLVM's build system as somewhere along
1184-
# the line LLVM prints a path into a file from Python and then CMake
1185-
# later tries to interpret that path. If Python prints a MSYS path
1186-
# and CMake tries to use it as a Windows path, you're gonna have a
1187-
# Bad Time.
1188-
#
1189-
# Consequently here we try to detect when that happens and print an
1190-
# error if it does.
1191-
if $CFG_PYTHON -c 'import sys; print sys.argv[1]' `pwd` | grep '^/' > /dev/null
1192-
then
1193-
err "
1194-
1195-
python is silently translating windows paths to MSYS paths \
1196-
and the build will fail if this python is used.
1197-
1198-
Either an official python install must be used or an \
1199-
alternative python package in MinGW must be used.
1200-
1201-
If you are building under msys2 try installing the mingw-w64-x86_64-python2 \
1202-
package instead of python2:
1203-
1204-
$ pacman -R python2 && pacman -S mingw-w64-x86_64-python2
1205-
"
1206-
fi
1207-
12081181
# There are three builds of cmake on windows: MSVC, MinGW and Cygwin
12091182
# The Cygwin build does not have generators for Visual Studio, so
12101183
# detect that here and error.
@@ -1288,6 +1261,36 @@ $ pacman -R cmake && pacman -S mingw-w64-x86_64-cmake
12881261
esac
12891262
done
12901263

1264+
if [ "$CFG_OSTYPE" = "pc-windows-gnu" ] || [ "$CFG_OSTYPE" = "pc-windows-msvc" ]
1265+
then
1266+
# There are some MSYS python builds which will auto-translate
1267+
# windows-style paths to MSYS-style paths in Python itself.
1268+
# Unfortunately this breaks LLVM's build system as somewhere along
1269+
# the line LLVM prints a path into a file from Python and then CMake
1270+
# later tries to interpret that path. If Python prints a MSYS path
1271+
# and CMake tries to use it as a Windows path, you're gonna have a
1272+
# Bad Time.
1273+
#
1274+
# Consequently here we try to detect when that happens and print an
1275+
# error if it does.
1276+
if $CFG_PYTHON -c 'import sys; print sys.argv[1]' `pwd` | grep '^/' > /dev/null
1277+
then
1278+
err "
1279+
1280+
python is silently translating windows paths to MSYS paths \
1281+
and the build will fail if this python is used.
1282+
1283+
Either an official python install must be used or an \
1284+
alternative python package in MinGW must be used.
1285+
1286+
If you are building under msys2 try installing the mingw-w64-x86_64-python2 \
1287+
package instead of python2:
1288+
1289+
$ pacman -S mingw-w64-x86_64-python2
1290+
"
1291+
fi
1292+
fi
1293+
12911294
if [ -n "$CFG_PERF" ]
12921295
then
12931296
HAVE_PERF_LOGFD=`$CFG_PERF stat --log-fd 2>&1 | grep 'unknown option'`

0 commit comments

Comments
 (0)