Skip to content

Commit 1e43666

Browse files
committed
look for python2 symlinks before bootstrap python
Before this commit, if you're running x.py directly on a system where `python` is symlinked to Python 3, then the `python` config option will default to a Python 3 interpreter. This causes debuginfo tests to fail with an opaque error message, since they have a hard requirement on Python 2. This commit modifies the Python probe behavior to look for python2.7 and python2 *before* using the interpreter used to execute `x.py`.
1 parent f66e469 commit 1e43666

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

config.toml.example

+3
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,9 @@
162162
# Python interpreter to use for various tasks throughout the build, notably
163163
# rustdoc tests, the lldb python interpreter, and some dist bits and pieces.
164164
# Note that Python 2 is currently required.
165+
#
166+
# Defaults to python2.7, then python2. If neither executable can be found, then
167+
# it defaults to the Python interpreter used to execute x.py.
165168
#python = "python2.7"
166169

167170
# Force Cargo to check that Cargo.lock describes the precise dependency

src/bootstrap/sanity.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,9 +107,9 @@ pub fn check(build: &mut Build) {
107107
}
108108

109109
build.config.python = build.config.python.take().map(|p| cmd_finder.must_have(p))
110-
.or_else(|| env::var_os("BOOTSTRAP_PYTHON").map(PathBuf::from)) // set by bootstrap.py
111110
.or_else(|| cmd_finder.maybe_have("python2.7"))
112111
.or_else(|| cmd_finder.maybe_have("python2"))
112+
.or_else(|| env::var_os("BOOTSTRAP_PYTHON").map(PathBuf::from)) // set by bootstrap.py
113113
.or_else(|| Some(cmd_finder.must_have("python")));
114114

115115
build.config.nodejs = build.config.nodejs.take().map(|p| cmd_finder.must_have(p))

0 commit comments

Comments
 (0)