2022-04-06 14:41:57 +00:00
|
|
|
//! Main implementation module included in both the `pyo3-build-config` library crate
|
|
|
|
//! and its build script.
|
|
|
|
|
|
|
|
// Optional python3.dll import library generator for Windows
|
|
|
|
#[cfg(feature = "python3-dll-a")]
|
2022-05-10 07:33:08 +00:00
|
|
|
#[path = "import_lib.rs"]
|
|
|
|
mod import_lib;
|
2022-04-06 14:41:57 +00:00
|
|
|
|
2021-05-19 20:50:25 +00:00
|
|
|
use std::{
|
|
|
|
collections::{HashMap, HashSet},
|
|
|
|
env,
|
2021-09-16 22:33:51 +00:00
|
|
|
ffi::{OsStr, OsString},
|
2021-05-19 20:50:25 +00:00
|
|
|
fmt::Display,
|
2021-06-01 17:31:34 +00:00
|
|
|
fs::{self, DirEntry},
|
|
|
|
io::{BufRead, BufReader, Read, Write},
|
2021-05-19 20:50:25 +00:00
|
|
|
path::{Path, PathBuf},
|
|
|
|
process::{Command, Stdio},
|
2022-03-17 14:29:43 +00:00
|
|
|
str,
|
2021-05-19 20:50:25 +00:00
|
|
|
str::FromStr,
|
|
|
|
};
|
|
|
|
|
2022-03-25 09:12:05 +00:00
|
|
|
pub use target_lexicon::Triple;
|
|
|
|
|
2022-12-27 20:43:14 +00:00
|
|
|
use target_lexicon::{Environment, OperatingSystem};
|
2022-03-25 09:12:05 +00:00
|
|
|
|
2021-07-14 21:13:58 +00:00
|
|
|
use crate::{
|
|
|
|
bail, ensure,
|
|
|
|
errors::{Context, Error, Result},
|
2023-10-22 22:15:08 +00:00
|
|
|
format_warn, warn,
|
2021-07-14 21:13:58 +00:00
|
|
|
};
|
|
|
|
|
2021-05-19 20:50:25 +00:00
|
|
|
/// Minimum Python version PyO3 supports.
|
2021-11-19 10:45:27 +00:00
|
|
|
const MINIMUM_SUPPORTED_VERSION: PythonVersion = PythonVersion { major: 3, minor: 7 };
|
2022-03-23 06:12:12 +00:00
|
|
|
|
2021-05-19 20:50:25 +00:00
|
|
|
/// Maximum Python version that can be used as minimum required Python version with abi3.
|
2023-12-21 15:29:00 +00:00
|
|
|
const ABI3_MAX_MINOR: u8 = 12;
|
2021-05-19 20:50:25 +00:00
|
|
|
|
|
|
|
/// Gets an environment variable owned by cargo.
|
|
|
|
///
|
|
|
|
/// Environment variables set by cargo are expected to be valid UTF8.
|
2021-08-01 16:19:31 +00:00
|
|
|
pub fn cargo_env_var(var: &str) -> Option<String> {
|
2021-05-19 20:50:25 +00:00
|
|
|
env::var_os(var).map(|os_string| os_string.to_str().unwrap().into())
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Gets an external environment variable, and registers the build script to rerun if
|
|
|
|
/// the variable changes.
|
2021-08-01 16:19:31 +00:00
|
|
|
pub fn env_var(var: &str) -> Option<OsString> {
|
2021-12-16 00:18:37 +00:00
|
|
|
if cfg!(feature = "resolve-config") {
|
|
|
|
println!("cargo:rerun-if-env-changed={}", var);
|
|
|
|
}
|
2021-05-19 20:50:25 +00:00
|
|
|
env::var_os(var)
|
|
|
|
}
|
|
|
|
|
2022-03-25 09:12:05 +00:00
|
|
|
/// Gets the compilation target triple from environment variables set by Cargo.
|
|
|
|
///
|
|
|
|
/// Must be called from a crate build script.
|
|
|
|
pub fn target_triple_from_env() -> Triple {
|
|
|
|
env::var("TARGET")
|
|
|
|
.expect("target_triple_from_env() must be called from a build script")
|
|
|
|
.parse()
|
|
|
|
.expect("Unrecognized TARGET environment variable value")
|
|
|
|
}
|
|
|
|
|
2021-05-19 20:50:25 +00:00
|
|
|
/// Configuration needed by PyO3 to build for the correct Python implementation.
|
|
|
|
///
|
2021-08-05 21:43:26 +00:00
|
|
|
/// Usually this is queried directly from the Python interpreter, or overridden using the
|
|
|
|
/// `PYO3_CONFIG_FILE` environment variable.
|
|
|
|
///
|
|
|
|
/// When the `PYO3_NO_PYTHON` variable is set, or during cross compile situations, then alternative
|
|
|
|
/// strategies are used to populate this type.
|
2022-07-12 22:01:38 +00:00
|
|
|
#[cfg_attr(test, derive(Debug, PartialEq, Eq))]
|
2021-05-19 20:50:25 +00:00
|
|
|
pub struct InterpreterConfig {
|
2021-08-14 17:35:59 +00:00
|
|
|
/// The Python implementation flavor.
|
|
|
|
///
|
|
|
|
/// Serialized to `implementation`.
|
2021-08-03 20:17:17 +00:00
|
|
|
pub implementation: PythonImplementation,
|
2021-08-14 17:35:59 +00:00
|
|
|
|
|
|
|
/// Python `X.Y` version. e.g. `3.9`.
|
|
|
|
///
|
|
|
|
/// Serialized to `version`.
|
2021-05-19 20:50:25 +00:00
|
|
|
pub version: PythonVersion,
|
2021-08-14 17:35:59 +00:00
|
|
|
|
|
|
|
/// Whether link library is shared.
|
|
|
|
///
|
|
|
|
/// Serialized to `shared`.
|
2021-05-19 20:50:25 +00:00
|
|
|
pub shared: bool,
|
2021-08-14 17:35:59 +00:00
|
|
|
|
|
|
|
/// Whether linking against the stable/limited Python 3 API.
|
|
|
|
///
|
|
|
|
/// Serialized to `abi3`.
|
2021-05-19 20:50:25 +00:00
|
|
|
pub abi3: bool,
|
2021-08-14 17:35:59 +00:00
|
|
|
|
|
|
|
/// The name of the link library defining Python.
|
|
|
|
///
|
|
|
|
/// This effectively controls the `cargo:rustc-link-lib=<name>` value to
|
|
|
|
/// control how libpython is linked. Values should not contain the `lib`
|
|
|
|
/// prefix.
|
|
|
|
///
|
|
|
|
/// Serialized to `lib_name`.
|
2021-08-03 20:17:17 +00:00
|
|
|
pub lib_name: Option<String>,
|
2021-08-14 17:35:59 +00:00
|
|
|
|
|
|
|
/// The directory containing the Python library to link against.
|
|
|
|
///
|
|
|
|
/// The effectively controls the `cargo:rustc-link-search=native=<path>` value
|
|
|
|
/// to add an additional library search path for the linker.
|
|
|
|
///
|
|
|
|
/// Serialized to `lib_dir`.
|
2021-08-03 20:17:17 +00:00
|
|
|
pub lib_dir: Option<String>,
|
2021-08-14 17:35:59 +00:00
|
|
|
|
|
|
|
/// Path of host `python` executable.
|
|
|
|
///
|
|
|
|
/// This is a valid executable capable of running on the host/building machine.
|
|
|
|
/// For configurations derived by invoking a Python interpreter, it was the
|
|
|
|
/// executable invoked.
|
|
|
|
///
|
|
|
|
/// Serialized to `executable`.
|
2021-05-19 20:50:25 +00:00
|
|
|
pub executable: Option<String>,
|
2021-08-14 17:35:59 +00:00
|
|
|
|
|
|
|
/// Width in bits of pointers on the target machine.
|
|
|
|
///
|
|
|
|
/// Serialized to `pointer_width`.
|
2021-08-03 20:17:17 +00:00
|
|
|
pub pointer_width: Option<u32>,
|
2021-08-14 17:35:59 +00:00
|
|
|
|
|
|
|
/// Additional relevant Python build flags / configuration settings.
|
|
|
|
///
|
|
|
|
/// Serialized to `build_flags`.
|
2021-05-19 20:50:25 +00:00
|
|
|
pub build_flags: BuildFlags,
|
2021-08-14 17:48:56 +00:00
|
|
|
|
2021-08-14 18:10:53 +00:00
|
|
|
/// Whether to suppress emitting of `cargo:rustc-link-*` lines from the build script.
|
|
|
|
///
|
|
|
|
/// Typically, `pyo3`'s build script will emit `cargo:rustc-link-lib=` and
|
|
|
|
/// `cargo:rustc-link-search=` lines derived from other fields in this struct. In
|
|
|
|
/// advanced building configurations, the default logic to derive these lines may not
|
|
|
|
/// be sufficient. This field can be set to `Some(true)` to suppress the emission
|
|
|
|
/// of these lines.
|
|
|
|
///
|
|
|
|
/// If suppression is enabled, `extra_build_script_lines` should contain equivalent
|
|
|
|
/// functionality or else a build failure is likely.
|
|
|
|
pub suppress_build_script_link_lines: bool,
|
|
|
|
|
2021-08-14 17:48:56 +00:00
|
|
|
/// Additional lines to `println!()` from Cargo build scripts.
|
|
|
|
///
|
|
|
|
/// This field can be populated to enable the `pyo3` crate to emit additional lines from its
|
|
|
|
/// its Cargo build script.
|
|
|
|
///
|
|
|
|
/// This crate doesn't populate this field itself. Rather, it is intended to be used with
|
|
|
|
/// externally provided config files to give them significant control over how the crate
|
|
|
|
/// is build/configured.
|
|
|
|
///
|
|
|
|
/// Serialized to multiple `extra_build_script_line` values.
|
|
|
|
pub extra_build_script_lines: Vec<String>,
|
2021-05-19 20:50:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl InterpreterConfig {
|
2021-08-05 21:43:26 +00:00
|
|
|
#[doc(hidden)]
|
2023-10-22 22:15:08 +00:00
|
|
|
pub fn build_script_outputs(&self) -> Vec<String> {
|
2021-05-19 20:50:25 +00:00
|
|
|
// This should have been checked during pyo3-build-config build time.
|
|
|
|
assert!(self.version >= MINIMUM_SUPPORTED_VERSION);
|
2021-11-19 10:45:27 +00:00
|
|
|
|
2023-10-22 22:15:08 +00:00
|
|
|
let mut out = vec![];
|
|
|
|
|
2021-11-19 10:45:27 +00:00
|
|
|
// pyo3-build-config was released when Python 3.6 was supported, so minimum flag to emit is
|
|
|
|
// Py_3_6 (to avoid silently breaking users who depend on this cfg).
|
|
|
|
for i in 6..=self.version.minor {
|
2023-10-22 22:15:08 +00:00
|
|
|
out.push(format!("cargo:rustc-cfg=Py_3_{}", i));
|
2021-05-19 20:50:25 +00:00
|
|
|
}
|
|
|
|
|
2021-08-05 21:43:26 +00:00
|
|
|
if self.implementation.is_pypy() {
|
2023-10-22 22:15:08 +00:00
|
|
|
out.push("cargo:rustc-cfg=PyPy".to_owned());
|
2021-05-19 20:50:25 +00:00
|
|
|
if self.abi3 {
|
2023-10-22 22:15:08 +00:00
|
|
|
out.push(format_warn!(
|
2021-05-19 20:50:25 +00:00
|
|
|
"PyPy does not yet support abi3 so the build artifacts will be version-specific. \
|
|
|
|
See https://foss.heptapod.net/pypy/pypy/-/issues/3397 for more information."
|
2023-10-22 22:15:08 +00:00
|
|
|
));
|
2021-05-19 20:50:25 +00:00
|
|
|
}
|
2021-11-15 02:44:26 +00:00
|
|
|
} else if self.abi3 {
|
2023-10-22 22:15:08 +00:00
|
|
|
out.push("cargo:rustc-cfg=Py_LIMITED_API".to_owned());
|
2021-11-15 02:44:26 +00:00
|
|
|
}
|
2021-05-19 20:50:25 +00:00
|
|
|
|
|
|
|
for flag in &self.build_flags.0 {
|
2023-10-22 22:15:08 +00:00
|
|
|
out.push(format!("cargo:rustc-cfg=py_sys_config=\"{}\"", flag));
|
2021-05-19 20:50:25 +00:00
|
|
|
}
|
2023-10-22 22:15:08 +00:00
|
|
|
|
|
|
|
out
|
2021-05-19 20:50:25 +00:00
|
|
|
}
|
|
|
|
|
2021-08-05 21:43:26 +00:00
|
|
|
#[doc(hidden)]
|
|
|
|
pub fn from_interpreter(interpreter: impl AsRef<Path>) -> Result<Self> {
|
2021-08-06 07:49:36 +00:00
|
|
|
const SCRIPT: &str = r#"
|
2021-08-05 21:43:26 +00:00
|
|
|
# Allow the script to run on Python 2, so that nicer error can be printed later.
|
|
|
|
from __future__ import print_function
|
|
|
|
|
|
|
|
import os.path
|
|
|
|
import platform
|
|
|
|
import struct
|
|
|
|
import sys
|
2021-08-05 22:23:23 +00:00
|
|
|
from sysconfig import get_config_var, get_platform
|
2021-08-05 21:43:26 +00:00
|
|
|
|
|
|
|
PYPY = platform.python_implementation() == "PyPy"
|
|
|
|
|
|
|
|
# sys.base_prefix is missing on Python versions older than 3.3; this allows the script to continue
|
|
|
|
# so that the version mismatch can be reported in a nicer way later.
|
|
|
|
base_prefix = getattr(sys, "base_prefix", None)
|
|
|
|
|
|
|
|
if base_prefix:
|
|
|
|
# Anaconda based python distributions have a static python executable, but include
|
|
|
|
# the shared library. Use the shared library for embedding to avoid rust trying to
|
|
|
|
# LTO the static library (and failing with newer gcc's, because it is old).
|
|
|
|
ANACONDA = os.path.exists(os.path.join(base_prefix, "conda-meta"))
|
|
|
|
else:
|
|
|
|
ANACONDA = False
|
|
|
|
|
|
|
|
def print_if_set(varname, value):
|
|
|
|
if value is not None:
|
|
|
|
print(varname, value)
|
|
|
|
|
|
|
|
# Windows always uses shared linking
|
2022-03-01 09:26:19 +00:00
|
|
|
WINDOWS = platform.system() == "Windows"
|
2021-08-05 21:43:26 +00:00
|
|
|
|
|
|
|
# macOS framework packages use shared linking
|
|
|
|
FRAMEWORK = bool(get_config_var("PYTHONFRAMEWORK"))
|
|
|
|
|
|
|
|
# unix-style shared library enabled
|
|
|
|
SHARED = bool(get_config_var("Py_ENABLE_SHARED"))
|
|
|
|
|
|
|
|
print("implementation", platform.python_implementation())
|
|
|
|
print("version_major", sys.version_info[0])
|
|
|
|
print("version_minor", sys.version_info[1])
|
|
|
|
print("shared", PYPY or ANACONDA or WINDOWS or FRAMEWORK or SHARED)
|
|
|
|
print_if_set("ld_version", get_config_var("LDVERSION"))
|
|
|
|
print_if_set("libdir", get_config_var("LIBDIR"))
|
|
|
|
print_if_set("base_prefix", base_prefix)
|
|
|
|
print("executable", sys.executable)
|
|
|
|
print("calcsize_pointer", struct.calcsize("P"))
|
2021-11-15 05:57:47 +00:00
|
|
|
print("mingw", get_platform().startswith("mingw"))
|
2023-02-06 20:33:16 +00:00
|
|
|
print("ext_suffix", get_config_var("EXT_SUFFIX"))
|
2021-08-05 21:43:26 +00:00
|
|
|
"#;
|
2021-08-06 07:49:36 +00:00
|
|
|
let output = run_python_script(interpreter.as_ref(), SCRIPT)?;
|
2021-08-05 21:43:26 +00:00
|
|
|
let map: HashMap<String, String> = parse_script_output(&output);
|
2022-04-11 11:45:16 +00:00
|
|
|
|
|
|
|
ensure!(
|
|
|
|
!map.is_empty(),
|
|
|
|
"broken Python interpreter: {}",
|
|
|
|
interpreter.as_ref().display()
|
|
|
|
);
|
|
|
|
|
2021-08-05 21:43:26 +00:00
|
|
|
let shared = map["shared"].as_str() == "True";
|
|
|
|
|
|
|
|
let version = PythonVersion {
|
|
|
|
major: map["version_major"]
|
|
|
|
.parse()
|
|
|
|
.context("failed to parse major version")?,
|
|
|
|
minor: map["version_minor"]
|
|
|
|
.parse()
|
|
|
|
.context("failed to parse minor version")?,
|
|
|
|
};
|
|
|
|
|
|
|
|
let abi3 = is_abi3();
|
2021-12-16 00:18:37 +00:00
|
|
|
|
2021-08-05 21:43:26 +00:00
|
|
|
let implementation = map["implementation"].parse()?;
|
|
|
|
|
|
|
|
let lib_name = if cfg!(windows) {
|
2021-11-15 05:24:29 +00:00
|
|
|
default_lib_name_windows(
|
|
|
|
version,
|
|
|
|
implementation,
|
|
|
|
abi3,
|
|
|
|
map["mingw"].as_str() == "True",
|
2023-02-06 20:33:16 +00:00
|
|
|
// This is the best heuristic currently available to detect debug build
|
|
|
|
// on Windows from sysconfig - e.g. ext_suffix may be
|
|
|
|
// `_d.cp312-win_amd64.pyd` for 3.12 debug build
|
|
|
|
map["ext_suffix"].starts_with("_d."),
|
2021-11-15 05:24:29 +00:00
|
|
|
)
|
2021-08-05 21:43:26 +00:00
|
|
|
} else {
|
|
|
|
default_lib_name_unix(
|
2021-08-06 07:49:36 +00:00
|
|
|
version,
|
2021-08-05 21:43:26 +00:00
|
|
|
implementation,
|
|
|
|
map.get("ld_version").map(String::as_str),
|
2021-08-06 07:49:36 +00:00
|
|
|
)
|
2021-08-05 21:43:26 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
let lib_dir = if cfg!(windows) {
|
|
|
|
map.get("base_prefix")
|
|
|
|
.map(|base_prefix| format!("{}\\libs", base_prefix))
|
|
|
|
} else {
|
|
|
|
map.get("libdir").cloned()
|
|
|
|
};
|
|
|
|
|
|
|
|
// The reason we don't use platform.architecture() here is that it's not
|
|
|
|
// reliable on macOS. See https://stackoverflow.com/a/1405971/823869.
|
|
|
|
// Similarly, sys.maxsize is not reliable on Windows. See
|
|
|
|
// https://stackoverflow.com/questions/1405913/how-do-i-determine-if-my-python-shell-is-executing-in-32bit-or-64bit-mode-on-os/1405971#comment6209952_1405971
|
|
|
|
// and https://stackoverflow.com/a/3411134/823869.
|
|
|
|
let calcsize_pointer: u32 = map["calcsize_pointer"]
|
|
|
|
.parse()
|
|
|
|
.context("failed to parse calcsize_pointer")?;
|
|
|
|
|
|
|
|
Ok(InterpreterConfig {
|
|
|
|
version,
|
|
|
|
implementation,
|
|
|
|
shared,
|
|
|
|
abi3,
|
|
|
|
lib_name: Some(lib_name),
|
|
|
|
lib_dir,
|
|
|
|
executable: map.get("executable").cloned(),
|
|
|
|
pointer_width: Some(calcsize_pointer * 8),
|
2023-08-15 07:41:22 +00:00
|
|
|
build_flags: BuildFlags::from_interpreter(interpreter)?,
|
2021-08-14 18:10:53 +00:00
|
|
|
suppress_build_script_link_lines: false,
|
2021-08-14 17:48:56 +00:00
|
|
|
extra_build_script_lines: vec![],
|
2021-08-05 21:43:26 +00:00
|
|
|
})
|
2021-05-19 20:50:25 +00:00
|
|
|
}
|
2021-06-01 17:31:34 +00:00
|
|
|
|
2021-12-16 00:18:37 +00:00
|
|
|
/// Generate from parsed sysconfigdata file
|
|
|
|
///
|
|
|
|
/// Use [`parse_sysconfigdata`] to generate a hash map of configuration values which may be
|
|
|
|
/// used to build an [`InterpreterConfig`].
|
|
|
|
pub fn from_sysconfigdata(sysconfigdata: &Sysconfigdata) -> Result<Self> {
|
|
|
|
macro_rules! get_key {
|
|
|
|
($sysconfigdata:expr, $key:literal) => {
|
|
|
|
$sysconfigdata
|
|
|
|
.get_value($key)
|
|
|
|
.ok_or(concat!($key, " not found in sysconfigdata file"))
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
macro_rules! parse_key {
|
|
|
|
($sysconfigdata:expr, $key:literal) => {
|
|
|
|
get_key!($sysconfigdata, $key)?
|
|
|
|
.parse()
|
|
|
|
.context(concat!("could not parse value of ", $key))
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
let soabi = get_key!(sysconfigdata, "SOABI")?;
|
|
|
|
let implementation = PythonImplementation::from_soabi(soabi)?;
|
|
|
|
let version = parse_key!(sysconfigdata, "VERSION")?;
|
|
|
|
let shared = match sysconfigdata.get_value("Py_ENABLE_SHARED") {
|
|
|
|
Some("1") | Some("true") | Some("True") => true,
|
|
|
|
Some("0") | Some("false") | Some("False") => false,
|
|
|
|
_ => bail!("expected a bool (1/true/True or 0/false/False) for Py_ENABLE_SHARED"),
|
|
|
|
};
|
2022-03-17 06:13:45 +00:00
|
|
|
// macOS framework packages use shared linking (PYTHONFRAMEWORK is the framework name, hence the empty check)
|
|
|
|
let framework = match sysconfigdata.get_value("PYTHONFRAMEWORK") {
|
|
|
|
Some(s) => !s.is_empty(),
|
|
|
|
_ => false,
|
|
|
|
};
|
2021-12-16 00:18:37 +00:00
|
|
|
let lib_dir = get_key!(sysconfigdata, "LIBDIR").ok().map(str::to_string);
|
|
|
|
let lib_name = Some(default_lib_name_unix(
|
|
|
|
version,
|
|
|
|
implementation,
|
|
|
|
sysconfigdata.get_value("LDVERSION"),
|
|
|
|
));
|
|
|
|
let pointer_width = parse_key!(sysconfigdata, "SIZEOF_VOID_P")
|
|
|
|
.map(|bytes_width: u32| bytes_width * 8)
|
|
|
|
.ok();
|
2023-08-15 07:41:22 +00:00
|
|
|
let build_flags = BuildFlags::from_sysconfigdata(sysconfigdata);
|
2021-12-16 00:18:37 +00:00
|
|
|
|
|
|
|
Ok(InterpreterConfig {
|
|
|
|
implementation,
|
|
|
|
version,
|
2022-03-17 06:13:45 +00:00
|
|
|
shared: shared || framework,
|
2021-12-16 00:18:37 +00:00
|
|
|
abi3: is_abi3(),
|
|
|
|
lib_dir,
|
|
|
|
lib_name,
|
|
|
|
executable: None,
|
|
|
|
pointer_width,
|
|
|
|
build_flags,
|
|
|
|
suppress_build_script_link_lines: false,
|
|
|
|
extra_build_script_lines: vec![],
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2021-08-04 11:54:45 +00:00
|
|
|
#[doc(hidden)]
|
|
|
|
pub fn from_path(path: impl AsRef<Path>) -> Result<Self> {
|
|
|
|
let path = path.as_ref();
|
2021-08-05 21:43:26 +00:00
|
|
|
let config_file = std::fs::File::open(path)
|
|
|
|
.with_context(|| format!("failed to open PyO3 config file at {}", path.display()))?;
|
2021-08-04 11:54:45 +00:00
|
|
|
let reader = std::io::BufReader::new(config_file);
|
|
|
|
InterpreterConfig::from_reader(reader)
|
|
|
|
}
|
|
|
|
|
2022-03-17 14:29:43 +00:00
|
|
|
#[doc(hidden)]
|
2022-03-21 16:55:39 +00:00
|
|
|
pub fn from_cargo_dep_env() -> Option<Result<Self>> {
|
|
|
|
cargo_env_var("DEP_PYTHON_PYO3_CONFIG")
|
2022-04-12 15:51:30 +00:00
|
|
|
.map(|buf| InterpreterConfig::from_reader(&*unescape(&buf)))
|
2022-01-08 01:44:36 +00:00
|
|
|
}
|
|
|
|
|
2021-06-01 17:31:34 +00:00
|
|
|
#[doc(hidden)]
|
|
|
|
pub fn from_reader(reader: impl Read) -> Result<Self> {
|
|
|
|
let reader = BufReader::new(reader);
|
2021-08-03 20:17:17 +00:00
|
|
|
let lines = reader.lines();
|
|
|
|
|
|
|
|
macro_rules! parse_value {
|
|
|
|
($variable:ident, $value:ident) => {
|
2021-11-19 10:45:27 +00:00
|
|
|
$variable = Some($value.trim().parse().context(format!(
|
2021-08-03 20:17:17 +00:00
|
|
|
concat!(
|
|
|
|
"failed to parse ",
|
|
|
|
stringify!($variable),
|
|
|
|
" from config value '{}'"
|
|
|
|
),
|
|
|
|
$value
|
|
|
|
))?)
|
2021-07-14 21:13:58 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2021-08-03 20:17:17 +00:00
|
|
|
let mut implementation = None;
|
|
|
|
let mut version = None;
|
|
|
|
let mut shared = None;
|
|
|
|
let mut abi3 = None;
|
|
|
|
let mut lib_name = None;
|
|
|
|
let mut lib_dir = None;
|
|
|
|
let mut executable = None;
|
|
|
|
let mut pointer_width = None;
|
|
|
|
let mut build_flags = None;
|
2021-08-14 18:10:53 +00:00
|
|
|
let mut suppress_build_script_link_lines = None;
|
2021-08-14 17:48:56 +00:00
|
|
|
let mut extra_build_script_lines = vec![];
|
2021-08-03 20:17:17 +00:00
|
|
|
|
|
|
|
for (i, line) in lines.enumerate() {
|
|
|
|
let line = line.context("failed to read line from config")?;
|
|
|
|
let mut split = line.splitn(2, '=');
|
|
|
|
let (key, value) = (
|
|
|
|
split
|
|
|
|
.next()
|
|
|
|
.expect("first splitn value should always be present"),
|
|
|
|
split
|
|
|
|
.next()
|
|
|
|
.ok_or_else(|| format!("expected key=value pair on line {}", i + 1))?,
|
|
|
|
);
|
|
|
|
match key {
|
|
|
|
"implementation" => parse_value!(implementation, value),
|
|
|
|
"version" => parse_value!(version, value),
|
|
|
|
"shared" => parse_value!(shared, value),
|
|
|
|
"abi3" => parse_value!(abi3, value),
|
|
|
|
"lib_name" => parse_value!(lib_name, value),
|
|
|
|
"lib_dir" => parse_value!(lib_dir, value),
|
|
|
|
"executable" => parse_value!(executable, value),
|
|
|
|
"pointer_width" => parse_value!(pointer_width, value),
|
|
|
|
"build_flags" => parse_value!(build_flags, value),
|
2021-08-14 18:10:53 +00:00
|
|
|
"suppress_build_script_link_lines" => {
|
|
|
|
parse_value!(suppress_build_script_link_lines, value)
|
|
|
|
}
|
2021-08-14 17:48:56 +00:00
|
|
|
"extra_build_script_line" => {
|
|
|
|
extra_build_script_lines.push(value.to_string());
|
|
|
|
}
|
2023-01-29 01:50:32 +00:00
|
|
|
unknown => warn!("unknown config key `{}`", unknown),
|
2021-08-03 20:17:17 +00:00
|
|
|
}
|
2021-07-14 21:13:58 +00:00
|
|
|
}
|
|
|
|
|
2021-08-03 20:17:17 +00:00
|
|
|
let version = version.ok_or("missing value for version")?;
|
|
|
|
let implementation = implementation.unwrap_or(PythonImplementation::CPython);
|
|
|
|
let abi3 = abi3.unwrap_or(false);
|
2022-05-28 05:52:45 +00:00
|
|
|
// Fixup lib_name if it's not set
|
|
|
|
let lib_name = lib_name.or_else(|| {
|
|
|
|
if let Ok(Ok(target)) = env::var("TARGET").map(|target| target.parse::<Triple>()) {
|
2022-05-28 06:54:57 +00:00
|
|
|
default_lib_name_for_target(version, implementation, abi3, &target)
|
2022-05-28 05:52:45 +00:00
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
});
|
2021-08-03 20:17:17 +00:00
|
|
|
|
2021-06-01 17:31:34 +00:00
|
|
|
Ok(InterpreterConfig {
|
2021-08-03 20:17:17 +00:00
|
|
|
implementation,
|
|
|
|
version,
|
|
|
|
shared: shared.unwrap_or(true),
|
2021-06-01 17:31:34 +00:00
|
|
|
abi3,
|
2021-08-03 20:17:17 +00:00
|
|
|
lib_name,
|
|
|
|
lib_dir,
|
2021-06-01 17:31:34 +00:00
|
|
|
executable,
|
2021-08-03 20:17:17 +00:00
|
|
|
pointer_width,
|
2021-11-19 10:45:27 +00:00
|
|
|
build_flags: build_flags.unwrap_or_default(),
|
2021-08-14 18:10:53 +00:00
|
|
|
suppress_build_script_link_lines: suppress_build_script_link_lines.unwrap_or(false),
|
2021-08-14 17:48:56 +00:00
|
|
|
extra_build_script_lines,
|
2021-06-01 17:31:34 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2022-05-28 07:07:10 +00:00
|
|
|
#[cfg(feature = "python3-dll-a")]
|
2022-05-14 11:33:16 +00:00
|
|
|
#[allow(clippy::unnecessary_wraps)]
|
2022-05-28 07:07:10 +00:00
|
|
|
pub fn generate_import_libs(&mut self) -> Result<()> {
|
2022-05-14 10:16:40 +00:00
|
|
|
// Auto generate python3.dll import libraries for Windows targets.
|
2022-05-28 07:07:10 +00:00
|
|
|
if self.lib_dir.is_none() {
|
|
|
|
let target = target_triple_from_env();
|
|
|
|
let py_version = if self.abi3 { None } else { Some(self.version) };
|
2022-07-14 05:16:06 +00:00
|
|
|
self.lib_dir =
|
|
|
|
import_lib::generate_import_lib(&target, self.implementation, py_version)?;
|
2022-05-14 10:16:40 +00:00
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2022-05-28 07:07:10 +00:00
|
|
|
#[cfg(not(feature = "python3-dll-a"))]
|
|
|
|
#[allow(clippy::unnecessary_wraps)]
|
|
|
|
pub fn generate_import_libs(&mut self) -> Result<()> {
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2022-03-17 14:29:43 +00:00
|
|
|
#[doc(hidden)]
|
2022-03-21 16:55:39 +00:00
|
|
|
/// Serialize the `InterpreterConfig` and print it to the environment for Cargo to pass along
|
|
|
|
/// to dependent packages during build time.
|
|
|
|
///
|
|
|
|
/// NB: writing to the cargo environment requires the
|
|
|
|
/// [`links`](https://doc.rust-lang.org/cargo/reference/build-scripts.html#the-links-manifest-key)
|
|
|
|
/// manifest key to be set. In this case that means this is called by the `pyo3-ffi` crate and
|
|
|
|
/// available for dependent package build scripts in `DEP_PYTHON_PYO3_CONFIG`. See
|
|
|
|
/// documentation for the
|
|
|
|
/// [`DEP_<name>_<key>`](https://doc.rust-lang.org/cargo/reference/environment-variables.html#environment-variables-cargo-sets-for-build-scripts)
|
|
|
|
/// environment variable.
|
|
|
|
pub fn to_cargo_dep_env(&self) -> Result<()> {
|
2022-03-17 14:29:43 +00:00
|
|
|
let mut buf = Vec::new();
|
|
|
|
self.to_writer(&mut buf)?;
|
|
|
|
// escape newlines in env var
|
2022-04-12 15:51:30 +00:00
|
|
|
println!("cargo:PYO3_CONFIG={}", escape(&buf));
|
2022-03-17 14:29:43 +00:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2021-06-01 17:31:34 +00:00
|
|
|
#[doc(hidden)]
|
|
|
|
pub fn to_writer(&self, mut writer: impl Write) -> Result<()> {
|
2021-07-14 21:13:58 +00:00
|
|
|
macro_rules! write_line {
|
2021-08-03 20:17:17 +00:00
|
|
|
($value:ident) => {
|
|
|
|
writeln!(writer, "{}={}", stringify!($value), self.$value).context(concat!(
|
2021-07-14 21:13:58 +00:00
|
|
|
"failed to write ",
|
|
|
|
stringify!($value),
|
|
|
|
" to config"
|
|
|
|
))
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
macro_rules! write_option_line {
|
2021-08-03 20:17:17 +00:00
|
|
|
($value:ident) => {
|
|
|
|
if let Some(value) = &self.$value {
|
|
|
|
writeln!(writer, "{}={}", stringify!($value), value).context(concat!(
|
|
|
|
"failed to write ",
|
|
|
|
stringify!($value),
|
|
|
|
" to config"
|
|
|
|
))
|
|
|
|
} else {
|
|
|
|
Ok(())
|
2021-06-26 13:37:55 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
2021-07-14 21:13:58 +00:00
|
|
|
|
2021-08-03 20:17:17 +00:00
|
|
|
write_line!(implementation)?;
|
|
|
|
write_line!(version)?;
|
|
|
|
write_line!(shared)?;
|
|
|
|
write_line!(abi3)?;
|
|
|
|
write_option_line!(lib_name)?;
|
|
|
|
write_option_line!(lib_dir)?;
|
|
|
|
write_option_line!(executable)?;
|
|
|
|
write_option_line!(pointer_width)?;
|
|
|
|
write_line!(build_flags)?;
|
2021-08-14 18:10:53 +00:00
|
|
|
write_line!(suppress_build_script_link_lines)?;
|
2021-08-14 17:48:56 +00:00
|
|
|
for line in &self.extra_build_script_lines {
|
|
|
|
writeln!(writer, "extra_build_script_line={}", line)
|
|
|
|
.context("failed to write extra_build_script_line")?;
|
|
|
|
}
|
2021-06-01 17:31:34 +00:00
|
|
|
Ok(())
|
|
|
|
}
|
2022-01-08 01:44:36 +00:00
|
|
|
|
2022-03-21 16:55:39 +00:00
|
|
|
/// Run a python script using the [`InterpreterConfig::executable`].
|
|
|
|
///
|
|
|
|
/// # Panics
|
|
|
|
///
|
|
|
|
/// This function will panic if the [`executable`](InterpreterConfig::executable) is `None`.
|
|
|
|
pub fn run_python_script(&self, script: &str) -> Result<String> {
|
|
|
|
run_python_script_with_envs(
|
|
|
|
Path::new(self.executable.as_ref().expect("no interpreter executable")),
|
|
|
|
script,
|
|
|
|
std::iter::empty::<(&str, &str)>(),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Run a python script using the [`InterpreterConfig::executable`] with additional
|
2022-01-08 01:44:36 +00:00
|
|
|
/// environment variables (e.g. PYTHONPATH) set.
|
2022-03-21 16:55:39 +00:00
|
|
|
///
|
|
|
|
/// # Panics
|
|
|
|
///
|
|
|
|
/// This function will panic if the [`executable`](InterpreterConfig::executable) is `None`.
|
2022-01-08 01:44:36 +00:00
|
|
|
pub fn run_python_script_with_envs<I, K, V>(&self, script: &str, envs: I) -> Result<String>
|
|
|
|
where
|
|
|
|
I: IntoIterator<Item = (K, V)>,
|
|
|
|
K: AsRef<OsStr>,
|
|
|
|
V: AsRef<OsStr>,
|
|
|
|
{
|
|
|
|
run_python_script_with_envs(
|
2022-03-17 14:29:43 +00:00
|
|
|
Path::new(self.executable.as_ref().expect("no interpreter executable")),
|
2022-01-08 01:44:36 +00:00
|
|
|
script,
|
|
|
|
envs,
|
|
|
|
)
|
|
|
|
}
|
2022-03-25 09:12:05 +00:00
|
|
|
|
|
|
|
/// Lowers the configured version to the abi3 version, if set.
|
|
|
|
fn fixup_for_abi3_version(&mut self, abi3_version: Option<PythonVersion>) -> Result<()> {
|
|
|
|
// PyPy doesn't support abi3; don't adjust the version
|
|
|
|
if self.implementation.is_pypy() {
|
|
|
|
return Ok(());
|
|
|
|
}
|
|
|
|
|
|
|
|
if let Some(version) = abi3_version {
|
|
|
|
ensure!(
|
|
|
|
version <= self.version,
|
|
|
|
"cannot set a minimum Python version {} higher than the interpreter version {} \
|
|
|
|
(the minimum Python version is implied by the abi3-py3{} feature)",
|
|
|
|
version,
|
|
|
|
self.version,
|
|
|
|
version.minor,
|
|
|
|
);
|
|
|
|
|
|
|
|
self.version = version;
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
2021-06-01 17:31:34 +00:00
|
|
|
}
|
|
|
|
|
2021-05-19 20:50:25 +00:00
|
|
|
#[derive(Debug, Copy, Clone, PartialEq, Eq, PartialOrd, Ord)]
|
|
|
|
pub struct PythonVersion {
|
|
|
|
pub major: u8,
|
|
|
|
pub minor: u8,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl PythonVersion {
|
|
|
|
const PY37: Self = PythonVersion { major: 3, minor: 7 };
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Display for PythonVersion {
|
|
|
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
|
|
|
write!(f, "{}.{}", self.major, self.minor)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-03 20:17:17 +00:00
|
|
|
impl FromStr for PythonVersion {
|
|
|
|
type Err = crate::errors::Error;
|
|
|
|
|
|
|
|
fn from_str(value: &str) -> Result<Self, Self::Err> {
|
|
|
|
let mut split = value.splitn(2, '.');
|
|
|
|
let (major, minor) = (
|
|
|
|
split
|
|
|
|
.next()
|
|
|
|
.expect("first splitn value should always be present"),
|
|
|
|
split.next().ok_or("expected major.minor version")?,
|
|
|
|
);
|
|
|
|
Ok(Self {
|
|
|
|
major: major.parse().context("failed to parse major version")?,
|
|
|
|
minor: minor.parse().context("failed to parse minor version")?,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-12 22:01:38 +00:00
|
|
|
#[derive(Debug, Copy, Clone, PartialEq, Eq)]
|
2021-05-19 20:50:25 +00:00
|
|
|
pub enum PythonImplementation {
|
|
|
|
CPython,
|
|
|
|
PyPy,
|
|
|
|
}
|
|
|
|
|
2021-08-05 21:43:26 +00:00
|
|
|
impl PythonImplementation {
|
|
|
|
#[doc(hidden)]
|
|
|
|
pub fn is_pypy(self) -> bool {
|
|
|
|
self == PythonImplementation::PyPy
|
|
|
|
}
|
2021-12-16 00:18:37 +00:00
|
|
|
|
|
|
|
#[doc(hidden)]
|
|
|
|
pub fn from_soabi(soabi: &str) -> Result<Self> {
|
|
|
|
if soabi.starts_with("pypy") {
|
|
|
|
Ok(PythonImplementation::PyPy)
|
|
|
|
} else if soabi.starts_with("cpython") {
|
|
|
|
Ok(PythonImplementation::CPython)
|
|
|
|
} else {
|
|
|
|
bail!("unsupported Python interpreter");
|
|
|
|
}
|
|
|
|
}
|
2021-08-05 21:43:26 +00:00
|
|
|
}
|
|
|
|
|
2021-06-26 13:37:55 +00:00
|
|
|
impl Display for PythonImplementation {
|
|
|
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
|
|
|
match self {
|
|
|
|
PythonImplementation::CPython => write!(f, "CPython"),
|
|
|
|
PythonImplementation::PyPy => write!(f, "PyPy"),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-19 20:50:25 +00:00
|
|
|
impl FromStr for PythonImplementation {
|
2021-07-14 21:13:58 +00:00
|
|
|
type Err = Error;
|
2021-05-19 20:50:25 +00:00
|
|
|
fn from_str(s: &str) -> Result<Self> {
|
|
|
|
match s {
|
|
|
|
"CPython" => Ok(PythonImplementation::CPython),
|
|
|
|
"PyPy" => Ok(PythonImplementation::PyPy),
|
2021-07-14 21:13:58 +00:00
|
|
|
_ => bail!("unknown interpreter: {}", s),
|
2021-05-19 20:50:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-05 13:51:24 +00:00
|
|
|
/// Checks if we should look for a Python interpreter installation
|
|
|
|
/// to get the target interpreter configuration.
|
|
|
|
///
|
|
|
|
/// Returns `false` if `PYO3_NO_PYTHON` environment variable is set.
|
|
|
|
fn have_python_interpreter() -> bool {
|
|
|
|
env_var("PYO3_NO_PYTHON").is_none()
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Checks if `abi3` or any of the `abi3-py3*` features is enabled for the PyO3 crate.
|
|
|
|
///
|
|
|
|
/// Must be called from a PyO3 crate build script.
|
2021-05-19 20:50:25 +00:00
|
|
|
fn is_abi3() -> bool {
|
|
|
|
cargo_env_var("CARGO_FEATURE_ABI3").is_some()
|
2024-02-13 21:52:53 +00:00
|
|
|
|| env_var("PYO3_USE_ABI3_FORWARD_COMPATIBILITY").map_or(false, |os_str| os_str == "1")
|
2021-05-19 20:50:25 +00:00
|
|
|
}
|
|
|
|
|
2022-03-25 09:12:05 +00:00
|
|
|
/// Gets the minimum supported Python version from PyO3 `abi3-py*` features.
|
|
|
|
///
|
|
|
|
/// Must be called from a PyO3 crate build script.
|
|
|
|
pub fn get_abi3_version() -> Option<PythonVersion> {
|
|
|
|
let minor_version = (MINIMUM_SUPPORTED_VERSION.minor..=ABI3_MAX_MINOR)
|
|
|
|
.find(|i| cargo_env_var(&format!("CARGO_FEATURE_ABI3_PY3{}", i)).is_some());
|
|
|
|
minor_version.map(|minor| PythonVersion { major: 3, minor })
|
|
|
|
}
|
2021-12-16 00:18:37 +00:00
|
|
|
|
2022-03-25 09:12:05 +00:00
|
|
|
/// Checks if the `extension-module` feature is enabled for the PyO3 crate.
|
|
|
|
///
|
|
|
|
/// Must be called from a PyO3 crate build script.
|
|
|
|
pub fn is_extension_module() -> bool {
|
|
|
|
cargo_env_var("CARGO_FEATURE_EXTENSION_MODULE").is_some()
|
2021-05-19 20:50:25 +00:00
|
|
|
}
|
|
|
|
|
2022-03-25 09:12:05 +00:00
|
|
|
/// Checks if we need to link to `libpython` for the current build target.
|
|
|
|
///
|
2022-04-11 11:45:16 +00:00
|
|
|
/// Must be called from a PyO3 crate build script.
|
2022-03-25 09:12:05 +00:00
|
|
|
pub fn is_linking_libpython() -> bool {
|
|
|
|
is_linking_libpython_for_target(&target_triple_from_env())
|
|
|
|
}
|
2022-03-16 07:54:34 +00:00
|
|
|
|
2022-03-25 09:12:05 +00:00
|
|
|
/// Checks if we need to link to `libpython` for the target.
|
|
|
|
///
|
2022-04-11 11:45:16 +00:00
|
|
|
/// Must be called from a PyO3 crate build script.
|
2022-03-25 09:12:05 +00:00
|
|
|
fn is_linking_libpython_for_target(target: &Triple) -> bool {
|
|
|
|
target.operating_system == OperatingSystem::Windows
|
|
|
|
|| target.environment == Environment::Android
|
|
|
|
|| target.environment == Environment::Androideabi
|
|
|
|
|| !is_extension_module()
|
2021-08-04 11:54:45 +00:00
|
|
|
}
|
|
|
|
|
2022-04-11 11:45:16 +00:00
|
|
|
/// Checks if we need to discover the Python library directory
|
|
|
|
/// to link the extension module binary.
|
|
|
|
///
|
|
|
|
/// Must be called from a PyO3 crate build script.
|
|
|
|
fn require_libdir_for_target(target: &Triple) -> bool {
|
|
|
|
let is_generating_libpython = cfg!(feature = "python3-dll-a")
|
|
|
|
&& target.operating_system == OperatingSystem::Windows
|
|
|
|
&& is_abi3();
|
|
|
|
|
|
|
|
is_linking_libpython_for_target(target) && !is_generating_libpython
|
|
|
|
}
|
|
|
|
|
2022-03-16 07:54:34 +00:00
|
|
|
/// Configuration needed by PyO3 to cross-compile for a target platform.
|
|
|
|
///
|
|
|
|
/// Usually this is collected from the environment (i.e. `PYO3_CROSS_*` and `CARGO_CFG_TARGET_*`)
|
|
|
|
/// when a cross-compilation configuration is detected.
|
2022-07-12 22:01:38 +00:00
|
|
|
#[derive(Debug, PartialEq, Eq)]
|
2022-03-16 07:54:34 +00:00
|
|
|
pub struct CrossCompileConfig {
|
|
|
|
/// The directory containing the Python library to link against.
|
2022-03-23 12:18:42 +00:00
|
|
|
pub lib_dir: Option<PathBuf>,
|
2021-12-16 00:18:37 +00:00
|
|
|
|
2022-03-16 07:54:34 +00:00
|
|
|
/// The version of the Python library to link against.
|
|
|
|
version: Option<PythonVersion>,
|
2021-12-16 00:18:37 +00:00
|
|
|
|
2022-04-04 11:51:26 +00:00
|
|
|
/// The target Python implementation hint (CPython or PyPy)
|
|
|
|
implementation: Option<PythonImplementation>,
|
|
|
|
|
2022-03-25 09:12:05 +00:00
|
|
|
/// The compile target triple (e.g. aarch64-unknown-linux-gnu)
|
|
|
|
target: Triple,
|
2022-03-16 07:54:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl CrossCompileConfig {
|
2022-03-25 09:12:05 +00:00
|
|
|
/// Creates a new cross compile config struct from PyO3 environment variables
|
|
|
|
/// and the build environment when cross compilation mode is detected.
|
|
|
|
///
|
|
|
|
/// Returns `None` when not cross compiling.
|
|
|
|
fn try_from_env_vars_host_target(
|
|
|
|
env_vars: CrossCompileEnvVars,
|
|
|
|
host: &Triple,
|
|
|
|
target: &Triple,
|
|
|
|
) -> Result<Option<Self>> {
|
|
|
|
if env_vars.any() || Self::is_cross_compiling_from_to(host, target) {
|
|
|
|
let lib_dir = env_vars.lib_dir_path()?;
|
|
|
|
let version = env_vars.parse_version()?;
|
2022-04-04 11:51:26 +00:00
|
|
|
let implementation = env_vars.parse_implementation()?;
|
2022-03-25 09:12:05 +00:00
|
|
|
let target = target.clone();
|
|
|
|
|
|
|
|
Ok(Some(CrossCompileConfig {
|
|
|
|
lib_dir,
|
|
|
|
version,
|
2022-04-04 11:51:26 +00:00
|
|
|
implementation,
|
|
|
|
target,
|
2022-03-25 09:12:05 +00:00
|
|
|
}))
|
|
|
|
} else {
|
|
|
|
Ok(None)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Checks if compiling on `host` for `target` required "real" cross compilation.
|
|
|
|
///
|
|
|
|
/// Returns `false` if the target Python interpreter can run on the host.
|
|
|
|
fn is_cross_compiling_from_to(host: &Triple, target: &Triple) -> bool {
|
|
|
|
// Not cross-compiling if arch-vendor-os is all the same
|
|
|
|
// e.g. x86_64-unknown-linux-musl on x86_64-unknown-linux-gnu host
|
|
|
|
// x86_64-pc-windows-gnu on x86_64-pc-windows-msvc host
|
|
|
|
let mut compatible = host.architecture == target.architecture
|
|
|
|
&& host.vendor == target.vendor
|
|
|
|
&& host.operating_system == target.operating_system;
|
|
|
|
|
|
|
|
// Not cross-compiling to compile for 32-bit Python from windows 64-bit
|
|
|
|
compatible |= target.operating_system == OperatingSystem::Windows
|
|
|
|
&& host.operating_system == OperatingSystem::Windows;
|
|
|
|
|
|
|
|
// Not cross-compiling to compile for x86-64 Python from macOS arm64 and vice versa
|
|
|
|
compatible |= target.operating_system == OperatingSystem::Darwin
|
|
|
|
&& host.operating_system == OperatingSystem::Darwin;
|
|
|
|
|
|
|
|
!compatible
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Converts `lib_dir` member field to an UTF-8 string.
|
|
|
|
///
|
|
|
|
/// The conversion can not fail because `PYO3_CROSS_LIB_DIR` variable
|
|
|
|
/// is ensured contain a valid UTF-8 string.
|
2022-03-23 12:18:42 +00:00
|
|
|
fn lib_dir_string(&self) -> Option<String> {
|
|
|
|
self.lib_dir
|
|
|
|
.as_ref()
|
|
|
|
.map(|s| s.to_str().unwrap().to_owned())
|
2021-12-16 00:18:37 +00:00
|
|
|
}
|
2022-03-16 07:54:34 +00:00
|
|
|
}
|
2021-12-16 00:18:37 +00:00
|
|
|
|
2022-04-04 11:51:26 +00:00
|
|
|
/// PyO3-specific cross compile environment variable values
|
|
|
|
struct CrossCompileEnvVars {
|
|
|
|
/// `PYO3_CROSS`
|
2022-03-16 07:54:34 +00:00
|
|
|
pyo3_cross: Option<OsString>,
|
2022-04-04 11:51:26 +00:00
|
|
|
/// `PYO3_CROSS_LIB_DIR`
|
2022-03-16 07:54:34 +00:00
|
|
|
pyo3_cross_lib_dir: Option<OsString>,
|
2022-04-04 11:51:26 +00:00
|
|
|
/// `PYO3_CROSS_PYTHON_VERSION`
|
2022-03-16 07:54:34 +00:00
|
|
|
pyo3_cross_python_version: Option<OsString>,
|
2022-04-04 11:51:26 +00:00
|
|
|
/// `PYO3_CROSS_PYTHON_IMPLEMENTATION`
|
|
|
|
pyo3_cross_python_implementation: Option<OsString>,
|
2022-03-16 07:54:34 +00:00
|
|
|
}
|
2021-12-16 00:18:37 +00:00
|
|
|
|
2022-03-16 07:54:34 +00:00
|
|
|
impl CrossCompileEnvVars {
|
2022-04-04 11:51:26 +00:00
|
|
|
/// Grabs the PyO3 cross-compile variables from the environment.
|
|
|
|
///
|
|
|
|
/// Registers the build script to rerun if any of the variables changes.
|
|
|
|
fn from_env() -> Self {
|
|
|
|
CrossCompileEnvVars {
|
|
|
|
pyo3_cross: env_var("PYO3_CROSS"),
|
|
|
|
pyo3_cross_lib_dir: env_var("PYO3_CROSS_LIB_DIR"),
|
|
|
|
pyo3_cross_python_version: env_var("PYO3_CROSS_PYTHON_VERSION"),
|
|
|
|
pyo3_cross_python_implementation: env_var("PYO3_CROSS_PYTHON_IMPLEMENTATION"),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Checks if any of the variables is set.
|
2022-03-24 11:37:03 +00:00
|
|
|
fn any(&self) -> bool {
|
2022-03-16 07:54:34 +00:00
|
|
|
self.pyo3_cross.is_some()
|
|
|
|
|| self.pyo3_cross_lib_dir.is_some()
|
|
|
|
|| self.pyo3_cross_python_version.is_some()
|
2022-04-04 11:51:26 +00:00
|
|
|
|| self.pyo3_cross_python_implementation.is_some()
|
2022-03-16 07:54:34 +00:00
|
|
|
}
|
2022-03-25 09:12:05 +00:00
|
|
|
|
|
|
|
/// Parses `PYO3_CROSS_PYTHON_VERSION` environment variable value
|
|
|
|
/// into `PythonVersion`.
|
|
|
|
fn parse_version(&self) -> Result<Option<PythonVersion>> {
|
|
|
|
let version = self
|
|
|
|
.pyo3_cross_python_version
|
|
|
|
.as_ref()
|
|
|
|
.map(|os_string| {
|
|
|
|
let utf8_str = os_string
|
|
|
|
.to_str()
|
|
|
|
.ok_or("PYO3_CROSS_PYTHON_VERSION is not valid a UTF-8 string")?;
|
|
|
|
utf8_str
|
|
|
|
.parse()
|
|
|
|
.context("failed to parse PYO3_CROSS_PYTHON_VERSION")
|
|
|
|
})
|
|
|
|
.transpose()?;
|
|
|
|
|
|
|
|
Ok(version)
|
|
|
|
}
|
|
|
|
|
2022-04-04 11:51:26 +00:00
|
|
|
/// Parses `PYO3_CROSS_PYTHON_IMPLEMENTATION` environment variable value
|
|
|
|
/// into `PythonImplementation`.
|
|
|
|
fn parse_implementation(&self) -> Result<Option<PythonImplementation>> {
|
|
|
|
let implementation = self
|
|
|
|
.pyo3_cross_python_implementation
|
|
|
|
.as_ref()
|
|
|
|
.map(|os_string| {
|
|
|
|
let utf8_str = os_string
|
|
|
|
.to_str()
|
|
|
|
.ok_or("PYO3_CROSS_PYTHON_IMPLEMENTATION is not valid a UTF-8 string")?;
|
|
|
|
utf8_str
|
|
|
|
.parse()
|
|
|
|
.context("failed to parse PYO3_CROSS_PYTHON_IMPLEMENTATION")
|
|
|
|
})
|
|
|
|
.transpose()?;
|
|
|
|
|
|
|
|
Ok(implementation)
|
|
|
|
}
|
|
|
|
|
2022-03-25 09:12:05 +00:00
|
|
|
/// Converts the stored `PYO3_CROSS_LIB_DIR` variable value (if any)
|
|
|
|
/// into a `PathBuf` instance.
|
|
|
|
///
|
|
|
|
/// Ensures that the path is a valid UTF-8 string.
|
2022-03-23 12:18:42 +00:00
|
|
|
fn lib_dir_path(&self) -> Result<Option<PathBuf>> {
|
2022-03-25 09:12:05 +00:00
|
|
|
let lib_dir = self.pyo3_cross_lib_dir.as_ref().map(PathBuf::from);
|
|
|
|
|
|
|
|
if let Some(dir) = lib_dir.as_ref() {
|
|
|
|
ensure!(
|
|
|
|
dir.to_str().is_some(),
|
|
|
|
"PYO3_CROSS_LIB_DIR variable value is not a valid UTF-8 string"
|
|
|
|
);
|
|
|
|
}
|
2022-03-23 12:18:42 +00:00
|
|
|
|
|
|
|
Ok(lib_dir)
|
2022-03-25 09:12:05 +00:00
|
|
|
}
|
2022-03-16 07:54:34 +00:00
|
|
|
}
|
|
|
|
|
2022-03-25 09:12:05 +00:00
|
|
|
/// Detect whether we are cross compiling and return an assembled CrossCompileConfig if so.
|
|
|
|
///
|
|
|
|
/// This function relies on PyO3 cross-compiling environment variables:
|
|
|
|
///
|
|
|
|
/// * `PYO3_CROSS`: If present, forces PyO3 to configure as a cross-compilation.
|
|
|
|
/// * `PYO3_CROSS_LIB_DIR`: If present, must be set to the directory containing
|
|
|
|
/// the target's libpython DSO and the associated `_sysconfigdata*.py` file for
|
|
|
|
/// Unix-like targets, or the Python DLL import libraries for the Windows target.
|
|
|
|
/// * `PYO3_CROSS_PYTHON_VERSION`: Major and minor version (e.g. 3.9) of the target Python
|
|
|
|
/// installation. This variable is only needed if PyO3 cannnot determine the version to target
|
|
|
|
/// from `abi3-py3*` features, or if there are multiple versions of Python present in
|
|
|
|
/// `PYO3_CROSS_LIB_DIR`.
|
|
|
|
///
|
|
|
|
/// See the [PyO3 User Guide](https://pyo3.rs/) for more info on cross-compiling.
|
|
|
|
pub fn cross_compiling_from_to(
|
|
|
|
host: &Triple,
|
|
|
|
target: &Triple,
|
|
|
|
) -> Result<Option<CrossCompileConfig>> {
|
2022-04-04 11:51:26 +00:00
|
|
|
let env_vars = CrossCompileEnvVars::from_env();
|
2022-03-25 09:12:05 +00:00
|
|
|
CrossCompileConfig::try_from_env_vars_host_target(env_vars, host, target)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Detect whether we are cross compiling from Cargo and `PYO3_CROSS_*` environment
|
|
|
|
/// variables and return an assembled `CrossCompileConfig` if so.
|
|
|
|
///
|
|
|
|
/// This must be called from PyO3's build script, because it relies on environment
|
|
|
|
/// variables such as `CARGO_CFG_TARGET_OS` which aren't available at any other time.
|
|
|
|
pub fn cross_compiling_from_cargo_env() -> Result<Option<CrossCompileConfig>> {
|
2022-04-04 11:51:26 +00:00
|
|
|
let env_vars = CrossCompileEnvVars::from_env();
|
2022-03-25 09:12:05 +00:00
|
|
|
let host = Triple::host();
|
|
|
|
let target = target_triple_from_env();
|
|
|
|
|
|
|
|
CrossCompileConfig::try_from_env_vars_host_target(env_vars, &host, &target)
|
2021-05-19 20:50:25 +00:00
|
|
|
}
|
|
|
|
|
2021-06-01 17:31:34 +00:00
|
|
|
#[allow(non_camel_case_types)]
|
|
|
|
#[derive(Debug, Clone, Hash, PartialEq, Eq)]
|
|
|
|
pub enum BuildFlag {
|
|
|
|
Py_DEBUG,
|
|
|
|
Py_REF_DEBUG,
|
|
|
|
Py_TRACE_REFS,
|
|
|
|
COUNT_ALLOCS,
|
|
|
|
Other(String),
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Display for BuildFlag {
|
|
|
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
2021-06-26 13:37:55 +00:00
|
|
|
match self {
|
|
|
|
BuildFlag::Other(flag) => write!(f, "{}", flag),
|
|
|
|
_ => write!(f, "{:?}", self),
|
|
|
|
}
|
2021-06-01 17:31:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl FromStr for BuildFlag {
|
2021-07-14 21:13:58 +00:00
|
|
|
type Err = std::convert::Infallible;
|
|
|
|
fn from_str(s: &str) -> Result<Self, Self::Err> {
|
2021-06-01 17:31:34 +00:00
|
|
|
match s {
|
|
|
|
"Py_DEBUG" => Ok(BuildFlag::Py_DEBUG),
|
|
|
|
"Py_REF_DEBUG" => Ok(BuildFlag::Py_REF_DEBUG),
|
|
|
|
"Py_TRACE_REFS" => Ok(BuildFlag::Py_TRACE_REFS),
|
|
|
|
"COUNT_ALLOCS" => Ok(BuildFlag::COUNT_ALLOCS),
|
|
|
|
other => Ok(BuildFlag::Other(other.to_owned())),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-19 20:50:25 +00:00
|
|
|
/// A list of python interpreter compile-time preprocessor defines that
|
|
|
|
/// we will pick up and pass to rustc via `--cfg=py_sys_config={varname}`;
|
|
|
|
/// this allows using them conditional cfg attributes in the .rs files, so
|
|
|
|
///
|
2021-06-26 13:37:55 +00:00
|
|
|
/// ```rust
|
|
|
|
/// #[cfg(py_sys_config="{varname}")]
|
|
|
|
/// # struct Foo;
|
|
|
|
/// ```
|
2021-05-19 20:50:25 +00:00
|
|
|
///
|
|
|
|
/// is the equivalent of `#ifdef {varname}` in C.
|
|
|
|
///
|
|
|
|
/// see Misc/SpecialBuilds.txt in the python source for what these mean.
|
2022-07-12 22:01:38 +00:00
|
|
|
#[cfg_attr(test, derive(Debug, PartialEq, Eq))]
|
2021-09-01 01:47:58 +00:00
|
|
|
#[derive(Clone, Default)]
|
2021-06-01 17:31:34 +00:00
|
|
|
pub struct BuildFlags(pub HashSet<BuildFlag>);
|
2021-05-19 20:50:25 +00:00
|
|
|
|
|
|
|
impl BuildFlags {
|
2021-11-19 10:45:27 +00:00
|
|
|
const ALL: [BuildFlag; 4] = [
|
2021-06-01 17:31:34 +00:00
|
|
|
BuildFlag::Py_DEBUG,
|
|
|
|
BuildFlag::Py_REF_DEBUG,
|
|
|
|
BuildFlag::Py_TRACE_REFS,
|
|
|
|
BuildFlag::COUNT_ALLOCS,
|
2021-05-19 20:50:25 +00:00
|
|
|
];
|
|
|
|
|
2021-08-06 07:49:36 +00:00
|
|
|
pub fn new() -> Self {
|
|
|
|
BuildFlags(HashSet::new())
|
|
|
|
}
|
|
|
|
|
2021-12-16 00:18:37 +00:00
|
|
|
fn from_sysconfigdata(config_map: &Sysconfigdata) -> Self {
|
2021-05-19 20:50:25 +00:00
|
|
|
Self(
|
|
|
|
BuildFlags::ALL
|
|
|
|
.iter()
|
2021-06-01 17:31:34 +00:00
|
|
|
.filter(|flag| {
|
|
|
|
config_map
|
2021-12-16 00:18:37 +00:00
|
|
|
.get_value(&flag.to_string())
|
2021-06-01 17:31:34 +00:00
|
|
|
.map_or(false, |value| value == "1")
|
|
|
|
})
|
2023-10-22 22:15:08 +00:00
|
|
|
.cloned()
|
2021-05-19 20:50:25 +00:00
|
|
|
.collect(),
|
|
|
|
)
|
2023-08-15 07:41:22 +00:00
|
|
|
.fixup()
|
2021-05-19 20:50:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Examine python's compile flags to pass to cfg by launching
|
|
|
|
/// the interpreter and printing variables of interest from
|
|
|
|
/// sysconfig.get_config_vars.
|
2021-08-05 21:43:26 +00:00
|
|
|
fn from_interpreter(interpreter: impl AsRef<Path>) -> Result<Self> {
|
2021-11-19 10:45:27 +00:00
|
|
|
// sysconfig is missing all the flags on windows, so we can't actually
|
|
|
|
// query the interpreter directly for its build flags.
|
2021-07-17 11:44:20 +00:00
|
|
|
if cfg!(windows) {
|
2021-11-19 10:45:27 +00:00
|
|
|
return Ok(Self::new());
|
2021-05-19 20:50:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
let mut script = String::from("import sysconfig\n");
|
|
|
|
script.push_str("config = sysconfig.get_config_vars()\n");
|
|
|
|
|
2022-02-28 08:03:54 +00:00
|
|
|
for k in &BuildFlags::ALL {
|
2022-07-02 15:08:01 +00:00
|
|
|
use std::fmt::Write;
|
|
|
|
writeln!(&mut script, "print(config.get('{}', '0'))", k).unwrap();
|
2021-05-19 20:50:25 +00:00
|
|
|
}
|
|
|
|
|
2021-08-05 21:43:26 +00:00
|
|
|
let stdout = run_python_script(interpreter.as_ref(), &script)?;
|
2021-05-19 20:50:25 +00:00
|
|
|
let split_stdout: Vec<&str> = stdout.trim_end().lines().collect();
|
|
|
|
ensure!(
|
|
|
|
split_stdout.len() == BuildFlags::ALL.len(),
|
|
|
|
"Python stdout len didn't return expected number of lines: {}",
|
|
|
|
split_stdout.len()
|
|
|
|
);
|
|
|
|
let flags = BuildFlags::ALL
|
|
|
|
.iter()
|
|
|
|
.zip(split_stdout)
|
|
|
|
.filter(|(_, flag_value)| *flag_value == "1")
|
2021-06-01 17:31:34 +00:00
|
|
|
.map(|(flag, _)| flag.clone())
|
2021-05-19 20:50:25 +00:00
|
|
|
.collect();
|
|
|
|
|
2023-08-15 07:41:22 +00:00
|
|
|
Ok(Self(flags).fixup())
|
2021-05-19 20:50:25 +00:00
|
|
|
}
|
|
|
|
|
2023-08-15 07:41:22 +00:00
|
|
|
fn fixup(mut self) -> Self {
|
2021-06-01 17:31:34 +00:00
|
|
|
if self.0.contains(&BuildFlag::Py_DEBUG) {
|
|
|
|
self.0.insert(BuildFlag::Py_REF_DEBUG);
|
2021-05-19 20:50:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-03 20:17:17 +00:00
|
|
|
impl Display for BuildFlags {
|
|
|
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
|
|
|
let mut first = true;
|
|
|
|
for flag in &self.0 {
|
2022-02-28 08:03:54 +00:00
|
|
|
if first {
|
2021-08-03 20:17:17 +00:00
|
|
|
first = false;
|
2022-02-28 08:03:54 +00:00
|
|
|
} else {
|
|
|
|
write!(f, ",")?;
|
2021-08-03 20:17:17 +00:00
|
|
|
}
|
|
|
|
write!(f, "{}", flag)?;
|
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl FromStr for BuildFlags {
|
|
|
|
type Err = std::convert::Infallible;
|
|
|
|
|
|
|
|
fn from_str(value: &str) -> Result<Self, Self::Err> {
|
|
|
|
let mut flags = HashSet::new();
|
2021-11-19 10:45:27 +00:00
|
|
|
for flag in value.split_terminator(',') {
|
2021-08-03 20:17:17 +00:00
|
|
|
flags.insert(flag.parse().unwrap());
|
|
|
|
}
|
|
|
|
Ok(BuildFlags(flags))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-19 20:50:25 +00:00
|
|
|
fn parse_script_output(output: &str) -> HashMap<String, String> {
|
|
|
|
output
|
|
|
|
.lines()
|
|
|
|
.filter_map(|line| {
|
|
|
|
let mut i = line.splitn(2, ' ');
|
|
|
|
Some((i.next()?.into(), i.next()?.into()))
|
|
|
|
})
|
|
|
|
.collect()
|
|
|
|
}
|
|
|
|
|
2021-12-16 00:18:37 +00:00
|
|
|
/// Parsed data from Python sysconfigdata file
|
|
|
|
///
|
|
|
|
/// A hash map of all values from a sysconfigdata file.
|
|
|
|
pub struct Sysconfigdata(HashMap<String, String>);
|
|
|
|
|
|
|
|
impl Sysconfigdata {
|
|
|
|
pub fn get_value<S: AsRef<str>>(&self, k: S) -> Option<&str> {
|
|
|
|
self.0.get(k.as_ref()).map(String::as_str)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[allow(dead_code)]
|
|
|
|
fn new() -> Self {
|
|
|
|
Sysconfigdata(HashMap::new())
|
|
|
|
}
|
|
|
|
|
|
|
|
#[allow(dead_code)]
|
|
|
|
fn insert<S: Into<String>>(&mut self, k: S, v: S) {
|
|
|
|
self.0.insert(k.into(), v.into());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-19 20:50:25 +00:00
|
|
|
/// Parse sysconfigdata file
|
|
|
|
///
|
|
|
|
/// The sysconfigdata is simply a dictionary containing all the build time variables used for the
|
2021-12-16 00:18:37 +00:00
|
|
|
/// python executable and library. This function necessitates a python interpreter on the host
|
|
|
|
/// machine to work. Here it is read into a `Sysconfigdata` (hash map), which can be turned into an
|
2023-09-08 14:36:24 +00:00
|
|
|
/// [`InterpreterConfig`] using
|
2021-12-16 00:18:37 +00:00
|
|
|
/// [`from_sysconfigdata`](InterpreterConfig::from_sysconfigdata).
|
|
|
|
pub fn parse_sysconfigdata(sysconfigdata_path: impl AsRef<Path>) -> Result<Sysconfigdata> {
|
2021-08-29 07:43:26 +00:00
|
|
|
let sysconfigdata_path = sysconfigdata_path.as_ref();
|
2022-09-22 14:59:02 +00:00
|
|
|
let mut script = fs::read_to_string(sysconfigdata_path).with_context(|| {
|
2021-07-14 21:13:58 +00:00
|
|
|
format!(
|
|
|
|
"failed to read config from {}",
|
2021-08-29 07:43:26 +00:00
|
|
|
sysconfigdata_path.display()
|
2021-07-14 21:13:58 +00:00
|
|
|
)
|
|
|
|
})?;
|
2021-05-19 20:50:25 +00:00
|
|
|
script += r#"
|
2021-12-16 00:18:37 +00:00
|
|
|
for key, val in build_time_vars.items():
|
|
|
|
print(key, val)
|
2021-05-19 20:50:25 +00:00
|
|
|
"#;
|
2021-08-29 07:43:26 +00:00
|
|
|
|
2021-12-16 00:18:37 +00:00
|
|
|
let output = run_python_script(&find_interpreter()?, &script)?;
|
2021-08-29 07:43:26 +00:00
|
|
|
|
2021-12-16 00:18:37 +00:00
|
|
|
Ok(Sysconfigdata(parse_script_output(&output)))
|
2021-05-19 20:50:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn starts_with(entry: &DirEntry, pat: &str) -> bool {
|
|
|
|
let name = entry.file_name();
|
|
|
|
name.to_string_lossy().starts_with(pat)
|
|
|
|
}
|
|
|
|
fn ends_with(entry: &DirEntry, pat: &str) -> bool {
|
|
|
|
let name = entry.file_name();
|
|
|
|
name.to_string_lossy().ends_with(pat)
|
|
|
|
}
|
|
|
|
|
2022-03-23 12:18:42 +00:00
|
|
|
/// Finds the sysconfigdata file when the target Python library directory is set.
|
|
|
|
///
|
|
|
|
/// Returns `None` if the library directory is not available, and a runtime error
|
|
|
|
/// when no or multiple sysconfigdata files are found.
|
|
|
|
fn find_sysconfigdata(cross: &CrossCompileConfig) -> Result<Option<PathBuf>> {
|
2021-12-16 00:18:37 +00:00
|
|
|
let mut sysconfig_paths = find_all_sysconfigdata(cross);
|
|
|
|
if sysconfig_paths.is_empty() {
|
2022-03-23 12:18:42 +00:00
|
|
|
if let Some(lib_dir) = cross.lib_dir.as_ref() {
|
2023-01-05 09:07:21 +00:00
|
|
|
bail!("Could not find _sysconfigdata*.py in {}", lib_dir.display());
|
2022-03-23 12:18:42 +00:00
|
|
|
} else {
|
|
|
|
// Continue with the default configuration when PYO3_CROSS_LIB_DIR is not set.
|
|
|
|
return Ok(None);
|
|
|
|
}
|
2021-12-16 00:18:37 +00:00
|
|
|
} else if sysconfig_paths.len() > 1 {
|
|
|
|
let mut error_msg = String::from(
|
|
|
|
"Detected multiple possible Python versions. Please set either the \
|
|
|
|
PYO3_CROSS_PYTHON_VERSION variable to the wanted version or the \
|
|
|
|
_PYTHON_SYSCONFIGDATA_NAME variable to the wanted sysconfigdata file name.\n\n\
|
|
|
|
sysconfigdata files found:",
|
|
|
|
);
|
|
|
|
for path in sysconfig_paths {
|
2022-07-02 15:08:01 +00:00
|
|
|
use std::fmt::Write;
|
|
|
|
write!(&mut error_msg, "\n\t{}", path.display()).unwrap();
|
2021-12-16 00:18:37 +00:00
|
|
|
}
|
|
|
|
bail!("{}\n", error_msg);
|
|
|
|
}
|
|
|
|
|
2022-03-23 12:18:42 +00:00
|
|
|
Ok(Some(sysconfig_paths.remove(0)))
|
2021-12-16 00:18:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Finds `_sysconfigdata*.py` files for detected Python interpreters.
|
2021-05-19 20:50:25 +00:00
|
|
|
///
|
|
|
|
/// From the python source for `_sysconfigdata*.py` is always going to be located at
|
|
|
|
/// `build/lib.{PLATFORM}-{PY_MINOR_VERSION}` when built from source. The [exact line][1] is defined as:
|
|
|
|
///
|
|
|
|
/// ```py
|
|
|
|
/// pybuilddir = 'build/lib.%s-%s' % (get_platform(), sys.version_info[:2])
|
|
|
|
/// ```
|
|
|
|
///
|
2021-08-06 07:49:36 +00:00
|
|
|
/// Where get_platform returns a kebab-case formatted string containing the os, the architecture and
|
2021-05-19 20:50:25 +00:00
|
|
|
/// possibly the os' kernel version (not the case on linux). However, when installed using a package
|
|
|
|
/// manager, the `_sysconfigdata*.py` file is installed in the `${PREFIX}/lib/python3.Y/` directory.
|
|
|
|
/// The `_sysconfigdata*.py` is generally in a sub-directory of the location of `libpython3.Y.so`.
|
|
|
|
/// So we must find the file in the following possible locations:
|
|
|
|
///
|
|
|
|
/// ```sh
|
2021-12-16 00:18:37 +00:00
|
|
|
/// # distribution from package manager, (lib_dir may or may not include lib/)
|
2021-05-19 20:50:25 +00:00
|
|
|
/// ${INSTALL_PREFIX}/lib/python3.Y/_sysconfigdata*.py
|
|
|
|
/// ${INSTALL_PREFIX}/lib/libpython3.Y.so
|
|
|
|
/// ${INSTALL_PREFIX}/lib/python3.Y/config-3.Y-${HOST_TRIPLE}/libpython3.Y.so
|
|
|
|
///
|
|
|
|
/// # Built from source from host
|
|
|
|
/// ${CROSS_COMPILED_LOCATION}/build/lib.linux-x86_64-Y/_sysconfigdata*.py
|
|
|
|
/// ${CROSS_COMPILED_LOCATION}/libpython3.Y.so
|
|
|
|
///
|
|
|
|
/// # if cross compiled, kernel release is only present on certain OS targets.
|
|
|
|
/// ${CROSS_COMPILED_LOCATION}/build/lib.{OS}(-{OS-KERNEL-RELEASE})?-{ARCH}-Y/_sysconfigdata*.py
|
|
|
|
/// ${CROSS_COMPILED_LOCATION}/libpython3.Y.so
|
2021-12-16 00:18:37 +00:00
|
|
|
///
|
|
|
|
/// # PyPy includes a similar file since v73
|
|
|
|
/// ${INSTALL_PREFIX}/lib/pypy3.Y/_sysconfigdata.py
|
|
|
|
/// ${INSTALL_PREFIX}/lib_pypy/_sysconfigdata.py
|
2021-05-19 20:50:25 +00:00
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
/// [1]: https://github.com/python/cpython/blob/3.5/Lib/sysconfig.py#L389
|
2022-03-23 12:18:42 +00:00
|
|
|
///
|
|
|
|
/// Returns an empty vector when the target Python library directory
|
|
|
|
/// is not set via `PYO3_CROSS_LIB_DIR`.
|
2021-12-16 00:18:37 +00:00
|
|
|
pub fn find_all_sysconfigdata(cross: &CrossCompileConfig) -> Vec<PathBuf> {
|
2022-03-23 12:18:42 +00:00
|
|
|
let sysconfig_paths = if let Some(lib_dir) = cross.lib_dir.as_ref() {
|
|
|
|
search_lib_dir(lib_dir, cross)
|
|
|
|
} else {
|
|
|
|
return Vec::new();
|
|
|
|
};
|
|
|
|
|
2021-05-19 20:50:25 +00:00
|
|
|
let sysconfig_name = env_var("_PYTHON_SYSCONFIGDATA_NAME");
|
|
|
|
let mut sysconfig_paths = sysconfig_paths
|
|
|
|
.iter()
|
|
|
|
.filter_map(|p| {
|
|
|
|
let canonical = fs::canonicalize(p).ok();
|
|
|
|
match &sysconfig_name {
|
|
|
|
Some(_) => canonical.filter(|p| p.file_stem() == sysconfig_name.as_deref()),
|
|
|
|
None => canonical,
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.collect::<Vec<PathBuf>>();
|
2021-12-16 00:18:37 +00:00
|
|
|
|
2021-08-29 07:43:26 +00:00
|
|
|
sysconfig_paths.sort();
|
2021-05-19 20:50:25 +00:00
|
|
|
sysconfig_paths.dedup();
|
|
|
|
|
2021-12-16 00:18:37 +00:00
|
|
|
sysconfig_paths
|
2021-05-19 20:50:25 +00:00
|
|
|
}
|
|
|
|
|
2021-12-16 00:18:37 +00:00
|
|
|
fn is_pypy_lib_dir(path: &str, v: &Option<PythonVersion>) -> bool {
|
|
|
|
let pypy_version_pat = if let Some(v) = v {
|
|
|
|
format!("pypy{}", v)
|
|
|
|
} else {
|
|
|
|
"pypy3.".into()
|
|
|
|
};
|
|
|
|
path == "lib_pypy" || path.starts_with(&pypy_version_pat)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn is_cpython_lib_dir(path: &str, v: &Option<PythonVersion>) -> bool {
|
|
|
|
let cpython_version_pat = if let Some(v) = v {
|
2021-05-19 20:50:25 +00:00
|
|
|
format!("python{}", v)
|
|
|
|
} else {
|
|
|
|
"python3.".into()
|
|
|
|
};
|
2021-12-16 00:18:37 +00:00
|
|
|
path.starts_with(&cpython_version_pat)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// recursive search for _sysconfigdata, returns all possibilities of sysconfigdata paths
|
|
|
|
fn search_lib_dir(path: impl AsRef<Path>, cross: &CrossCompileConfig) -> Vec<PathBuf> {
|
|
|
|
let mut sysconfig_paths = vec![];
|
2021-11-24 07:59:22 +00:00
|
|
|
for f in fs::read_dir(path).expect("Path does not exist") {
|
2021-08-06 07:49:36 +00:00
|
|
|
sysconfig_paths.extend(match &f {
|
2021-08-29 07:43:26 +00:00
|
|
|
// Python 3.7+ sysconfigdata with platform specifics
|
2021-10-12 11:06:26 +00:00
|
|
|
Ok(f) if starts_with(f, "_sysconfigdata_") && ends_with(f, "py") => vec![f.path()],
|
2021-08-29 07:43:26 +00:00
|
|
|
Ok(f) if f.metadata().map_or(false, |metadata| metadata.is_dir()) => {
|
|
|
|
let file_name = f.file_name();
|
|
|
|
let file_name = file_name.to_string_lossy();
|
2021-12-16 00:18:37 +00:00
|
|
|
if file_name == "build" || file_name == "lib" {
|
2021-08-29 07:43:26 +00:00
|
|
|
search_lib_dir(f.path(), cross)
|
|
|
|
} else if file_name.starts_with("lib.") {
|
|
|
|
// check if right target os
|
2022-03-25 09:12:05 +00:00
|
|
|
if !file_name.contains(&cross.target.operating_system.to_string()) {
|
2021-08-29 07:43:26 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
// Check if right arch
|
2022-03-25 09:12:05 +00:00
|
|
|
if !file_name.contains(&cross.target.architecture.to_string()) {
|
2021-08-29 07:43:26 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
search_lib_dir(f.path(), cross)
|
2021-12-16 00:18:37 +00:00
|
|
|
} else if is_cpython_lib_dir(&file_name, &cross.version)
|
|
|
|
|| is_pypy_lib_dir(&file_name, &cross.version)
|
|
|
|
{
|
2021-08-29 07:43:26 +00:00
|
|
|
search_lib_dir(f.path(), cross)
|
2021-05-19 20:50:25 +00:00
|
|
|
} else {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => continue,
|
2021-08-06 07:49:36 +00:00
|
|
|
});
|
2021-05-19 20:50:25 +00:00
|
|
|
}
|
2021-05-24 11:53:26 +00:00
|
|
|
// If we got more than one file, only take those that contain the arch name.
|
|
|
|
// For ubuntu 20.04 with host architecture x86_64 and a foreign architecture of armhf
|
|
|
|
// this reduces the number of candidates to 1:
|
|
|
|
//
|
|
|
|
// $ find /usr/lib/python3.8/ -name '_sysconfigdata*.py' -not -lname '*'
|
|
|
|
// /usr/lib/python3.8/_sysconfigdata__x86_64-linux-gnu.py
|
|
|
|
// /usr/lib/python3.8/_sysconfigdata__arm-linux-gnueabihf.py
|
|
|
|
if sysconfig_paths.len() > 1 {
|
|
|
|
let temp = sysconfig_paths
|
|
|
|
.iter()
|
2022-03-25 09:12:05 +00:00
|
|
|
.filter(|p| {
|
|
|
|
p.to_string_lossy()
|
|
|
|
.contains(&cross.target.architecture.to_string())
|
|
|
|
})
|
2021-05-24 11:53:26 +00:00
|
|
|
.cloned()
|
|
|
|
.collect::<Vec<PathBuf>>();
|
|
|
|
if !temp.is_empty() {
|
|
|
|
sysconfig_paths = temp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-19 20:50:25 +00:00
|
|
|
sysconfig_paths
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Find cross compilation information from sysconfigdata file
|
|
|
|
///
|
|
|
|
/// first find sysconfigdata file which follows the pattern [`_sysconfigdata_{abi}_{platform}_{multiarch}`][1]
|
|
|
|
///
|
|
|
|
/// [1]: https://github.com/python/cpython/blob/3.8/Lib/sysconfig.py#L348
|
2022-03-23 12:18:42 +00:00
|
|
|
///
|
|
|
|
/// Returns `None` when the target Python library directory is not set.
|
2022-03-16 07:54:34 +00:00
|
|
|
fn cross_compile_from_sysconfigdata(
|
2022-03-23 12:18:42 +00:00
|
|
|
cross_compile_config: &CrossCompileConfig,
|
|
|
|
) -> Result<Option<InterpreterConfig>> {
|
|
|
|
if let Some(path) = find_sysconfigdata(cross_compile_config)? {
|
|
|
|
let data = parse_sysconfigdata(path)?;
|
|
|
|
let config = InterpreterConfig::from_sysconfigdata(&data)?;
|
|
|
|
|
|
|
|
Ok(Some(config))
|
|
|
|
} else {
|
|
|
|
Ok(None)
|
|
|
|
}
|
2021-05-19 20:50:25 +00:00
|
|
|
}
|
|
|
|
|
2022-03-24 07:10:05 +00:00
|
|
|
/// Generates "default" cross compilation information for the target.
|
|
|
|
///
|
|
|
|
/// This should work for most CPython extension modules when targeting
|
2022-04-04 11:51:26 +00:00
|
|
|
/// Windows, macOS and Linux.
|
2022-03-24 07:10:05 +00:00
|
|
|
///
|
|
|
|
/// Must be called from a PyO3 crate build script.
|
2022-04-06 14:41:57 +00:00
|
|
|
#[allow(unused_mut)]
|
2022-03-24 07:10:05 +00:00
|
|
|
fn default_cross_compile(cross_compile_config: &CrossCompileConfig) -> Result<InterpreterConfig> {
|
2022-03-25 09:12:05 +00:00
|
|
|
let version = cross_compile_config
|
|
|
|
.version
|
|
|
|
.or_else(get_abi3_version)
|
2023-10-30 22:21:26 +00:00
|
|
|
.ok_or_else(||
|
|
|
|
format!(
|
|
|
|
"PYO3_CROSS_PYTHON_VERSION or an abi3-py3* feature must be specified \
|
|
|
|
when cross-compiling and PYO3_CROSS_LIB_DIR is not set.\n\
|
2024-03-09 20:10:58 +00:00
|
|
|
= help: see the PyO3 user guide for more information: https://pyo3.rs/v{}/building-and-distribution.html#cross-compiling",
|
2023-10-30 22:21:26 +00:00
|
|
|
env!("CARGO_PKG_VERSION")
|
|
|
|
)
|
2022-03-25 09:12:05 +00:00
|
|
|
)?;
|
2021-08-03 20:17:17 +00:00
|
|
|
|
2021-09-21 13:22:33 +00:00
|
|
|
let abi3 = is_abi3();
|
2022-04-04 11:51:26 +00:00
|
|
|
let implementation = cross_compile_config
|
|
|
|
.implementation
|
|
|
|
.unwrap_or(PythonImplementation::CPython);
|
2022-03-24 07:10:05 +00:00
|
|
|
|
2022-05-28 06:54:57 +00:00
|
|
|
let lib_name =
|
|
|
|
default_lib_name_for_target(version, implementation, abi3, &cross_compile_config.target);
|
2022-03-25 09:12:05 +00:00
|
|
|
|
2022-04-06 14:41:57 +00:00
|
|
|
let mut lib_dir = cross_compile_config.lib_dir_string();
|
|
|
|
|
|
|
|
// Auto generate python3.dll import libraries for Windows targets.
|
|
|
|
#[cfg(feature = "python3-dll-a")]
|
2022-05-10 07:46:47 +00:00
|
|
|
if lib_dir.is_none() {
|
|
|
|
let py_version = if abi3 { None } else { Some(version) };
|
2022-07-14 05:16:06 +00:00
|
|
|
lib_dir = self::import_lib::generate_import_lib(
|
|
|
|
&cross_compile_config.target,
|
|
|
|
cross_compile_config
|
|
|
|
.implementation
|
|
|
|
.unwrap_or(PythonImplementation::CPython),
|
|
|
|
py_version,
|
|
|
|
)?;
|
2022-04-06 14:41:57 +00:00
|
|
|
}
|
2021-09-21 13:22:33 +00:00
|
|
|
|
2021-05-19 20:50:25 +00:00
|
|
|
Ok(InterpreterConfig {
|
2021-12-16 00:18:37 +00:00
|
|
|
implementation,
|
2021-08-03 20:17:17 +00:00
|
|
|
version,
|
2021-05-19 20:50:25 +00:00
|
|
|
shared: true,
|
2021-09-21 13:22:33 +00:00
|
|
|
abi3,
|
2022-03-24 07:10:05 +00:00
|
|
|
lib_name,
|
2022-03-25 09:12:05 +00:00
|
|
|
lib_dir,
|
2021-05-19 20:50:25 +00:00
|
|
|
executable: None,
|
2021-08-03 20:17:17 +00:00
|
|
|
pointer_width: None,
|
2021-11-19 10:45:27 +00:00
|
|
|
build_flags: BuildFlags::default(),
|
2021-08-14 18:10:53 +00:00
|
|
|
suppress_build_script_link_lines: false,
|
2021-08-14 17:48:56 +00:00
|
|
|
extra_build_script_lines: vec![],
|
2021-05-19 20:50:25 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2022-04-05 13:51:24 +00:00
|
|
|
/// Generates "default" interpreter configuration when compiling "abi3" extensions
|
|
|
|
/// without a working Python interpreter.
|
|
|
|
///
|
|
|
|
/// `version` specifies the minimum supported Stable ABI CPython version.
|
|
|
|
///
|
|
|
|
/// This should work for most CPython extension modules when compiling on
|
|
|
|
/// Windows, macOS and Linux.
|
|
|
|
///
|
|
|
|
/// Must be called from a PyO3 crate build script.
|
|
|
|
fn default_abi3_config(host: &Triple, version: PythonVersion) -> InterpreterConfig {
|
|
|
|
// FIXME: PyPy does not support the Stable ABI yet.
|
|
|
|
let implementation = PythonImplementation::CPython;
|
|
|
|
let abi3 = true;
|
|
|
|
|
|
|
|
let lib_name = if host.operating_system == OperatingSystem::Windows {
|
|
|
|
Some(default_lib_name_windows(
|
|
|
|
version,
|
|
|
|
implementation,
|
|
|
|
abi3,
|
|
|
|
false,
|
2023-02-06 20:33:16 +00:00
|
|
|
false,
|
2022-04-05 13:51:24 +00:00
|
|
|
))
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
|
|
|
|
|
|
|
InterpreterConfig {
|
|
|
|
implementation,
|
|
|
|
version,
|
|
|
|
shared: true,
|
|
|
|
abi3,
|
|
|
|
lib_name,
|
|
|
|
lib_dir: None,
|
|
|
|
executable: None,
|
|
|
|
pointer_width: None,
|
|
|
|
build_flags: BuildFlags::default(),
|
|
|
|
suppress_build_script_link_lines: false,
|
|
|
|
extra_build_script_lines: vec![],
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-24 07:10:05 +00:00
|
|
|
/// Detects the cross compilation target interpreter configuration from all
|
|
|
|
/// available sources (PyO3 environment variables, Python sysconfigdata, etc.).
|
|
|
|
///
|
|
|
|
/// Returns the "default" target interpreter configuration for Windows and
|
|
|
|
/// when no target Python interpreter is found.
|
|
|
|
///
|
|
|
|
/// Must be called from a PyO3 crate build script.
|
2021-08-05 21:43:26 +00:00
|
|
|
fn load_cross_compile_config(
|
|
|
|
cross_compile_config: CrossCompileConfig,
|
|
|
|
) -> Result<InterpreterConfig> {
|
2022-04-05 13:51:24 +00:00
|
|
|
let windows = cross_compile_config.target.operating_system == OperatingSystem::Windows;
|
|
|
|
|
|
|
|
let config = if windows || !have_python_interpreter() {
|
|
|
|
// Load the defaults for Windows even when `PYO3_CROSS_LIB_DIR` is set
|
|
|
|
// since it has no sysconfigdata files in it.
|
|
|
|
// Also, do not try to look for sysconfigdata when `PYO3_NO_PYTHON` variable is set.
|
|
|
|
default_cross_compile(&cross_compile_config)?
|
|
|
|
} else if let Some(config) = cross_compile_from_sysconfigdata(&cross_compile_config)? {
|
|
|
|
// Try to find and parse sysconfigdata files on other targets.
|
|
|
|
config
|
2022-03-24 07:10:05 +00:00
|
|
|
} else {
|
2022-04-05 13:51:24 +00:00
|
|
|
// Fall back to the defaults when nothing else can be done.
|
|
|
|
default_cross_compile(&cross_compile_config)?
|
|
|
|
};
|
2022-03-24 07:10:05 +00:00
|
|
|
|
2022-04-05 13:51:24 +00:00
|
|
|
if config.lib_name.is_some() && config.lib_dir.is_none() {
|
|
|
|
warn!(
|
|
|
|
"The output binary will link to libpython, \
|
|
|
|
but PYO3_CROSS_LIB_DIR environment variable is not set. \
|
|
|
|
Ensure that the target Python library directory is \
|
|
|
|
in the rustc native library search path."
|
|
|
|
);
|
2021-05-19 20:50:25 +00:00
|
|
|
}
|
2022-04-05 13:51:24 +00:00
|
|
|
|
|
|
|
Ok(config)
|
2021-05-19 20:50:25 +00:00
|
|
|
}
|
|
|
|
|
2021-08-03 20:17:17 +00:00
|
|
|
// Link against python3.lib for the stable ABI on Windows.
|
|
|
|
// See https://www.python.org/dev/peps/pep-0384/#linkage
|
|
|
|
//
|
|
|
|
// This contains only the limited ABI symbols.
|
|
|
|
const WINDOWS_ABI3_LIB_NAME: &str = "python3";
|
|
|
|
|
2022-05-28 06:54:57 +00:00
|
|
|
fn default_lib_name_for_target(
|
|
|
|
version: PythonVersion,
|
|
|
|
implementation: PythonImplementation,
|
|
|
|
abi3: bool,
|
|
|
|
target: &Triple,
|
|
|
|
) -> Option<String> {
|
|
|
|
if target.operating_system == OperatingSystem::Windows {
|
|
|
|
Some(default_lib_name_windows(
|
|
|
|
version,
|
|
|
|
implementation,
|
|
|
|
abi3,
|
|
|
|
false,
|
2023-02-06 20:33:16 +00:00
|
|
|
false,
|
2022-05-28 06:54:57 +00:00
|
|
|
))
|
|
|
|
} else if is_linking_libpython_for_target(target) {
|
|
|
|
Some(default_lib_name_unix(version, implementation, None))
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-15 05:24:29 +00:00
|
|
|
fn default_lib_name_windows(
|
|
|
|
version: PythonVersion,
|
|
|
|
implementation: PythonImplementation,
|
|
|
|
abi3: bool,
|
|
|
|
mingw: bool,
|
2023-02-06 20:33:16 +00:00
|
|
|
debug: bool,
|
2021-11-15 05:24:29 +00:00
|
|
|
) -> String {
|
2023-02-06 20:33:16 +00:00
|
|
|
if debug {
|
|
|
|
// CPython bug: linking against python3_d.dll raises error
|
|
|
|
// https://github.com/python/cpython/issues/101614
|
|
|
|
format!("python{}{}_d", version.major, version.minor)
|
|
|
|
} else if abi3 && !implementation.is_pypy() {
|
2021-08-03 20:17:17 +00:00
|
|
|
WINDOWS_ABI3_LIB_NAME.to_owned()
|
2021-08-05 22:23:23 +00:00
|
|
|
} else if mingw {
|
2021-08-03 20:17:17 +00:00
|
|
|
// https://packages.msys2.org/base/mingw-w64-python
|
|
|
|
format!("python{}.{}", version.major, version.minor)
|
|
|
|
} else {
|
|
|
|
format!("python{}{}", version.major, version.minor)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn default_lib_name_unix(
|
2021-08-06 07:49:36 +00:00
|
|
|
version: PythonVersion,
|
2021-08-03 20:17:17 +00:00
|
|
|
implementation: PythonImplementation,
|
|
|
|
ld_version: Option<&str>,
|
2021-08-06 07:49:36 +00:00
|
|
|
) -> String {
|
2021-08-03 20:17:17 +00:00
|
|
|
match implementation {
|
2021-08-06 07:49:36 +00:00
|
|
|
PythonImplementation::CPython => match ld_version {
|
|
|
|
Some(ld_version) => format!("python{}", ld_version),
|
2022-04-09 09:01:07 +00:00
|
|
|
None => {
|
|
|
|
if version > PythonVersion::PY37 {
|
|
|
|
// PEP 3149 ABI version tags are finally gone
|
|
|
|
format!("python{}.{}", version.major, version.minor)
|
|
|
|
} else {
|
|
|
|
// Work around https://bugs.python.org/issue36707
|
|
|
|
format!("python{}.{}m", version.major, version.minor)
|
|
|
|
}
|
|
|
|
}
|
2021-08-03 20:17:17 +00:00
|
|
|
},
|
2022-02-24 19:41:09 +00:00
|
|
|
PythonImplementation::PyPy => {
|
|
|
|
if version >= (PythonVersion { major: 3, minor: 9 }) {
|
|
|
|
match ld_version {
|
|
|
|
Some(ld_version) => format!("pypy{}-c", ld_version),
|
|
|
|
None => format!("pypy{}.{}-c", version.major, version.minor),
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
format!("pypy{}-c", version.major)
|
|
|
|
}
|
|
|
|
}
|
2021-08-03 20:17:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-19 20:50:25 +00:00
|
|
|
/// Run a python script using the specified interpreter binary.
|
|
|
|
fn run_python_script(interpreter: &Path, script: &str) -> Result<String> {
|
2022-01-08 01:44:36 +00:00
|
|
|
run_python_script_with_envs(interpreter, script, std::iter::empty::<(&str, &str)>())
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Run a python script using the specified interpreter binary with additional environment
|
|
|
|
/// variables (e.g. PYTHONPATH) set.
|
|
|
|
fn run_python_script_with_envs<I, K, V>(interpreter: &Path, script: &str, envs: I) -> Result<String>
|
|
|
|
where
|
|
|
|
I: IntoIterator<Item = (K, V)>,
|
|
|
|
K: AsRef<OsStr>,
|
|
|
|
V: AsRef<OsStr>,
|
|
|
|
{
|
2021-05-19 20:50:25 +00:00
|
|
|
let out = Command::new(interpreter)
|
|
|
|
.env("PYTHONIOENCODING", "utf-8")
|
2022-01-08 01:44:36 +00:00
|
|
|
.envs(envs)
|
2021-05-19 20:50:25 +00:00
|
|
|
.stdin(Stdio::piped())
|
|
|
|
.stdout(Stdio::piped())
|
|
|
|
.stderr(Stdio::inherit())
|
|
|
|
.spawn()
|
|
|
|
.and_then(|mut child| {
|
|
|
|
child
|
|
|
|
.stdin
|
|
|
|
.as_mut()
|
|
|
|
.expect("piped stdin")
|
|
|
|
.write_all(script.as_bytes())?;
|
|
|
|
child.wait_with_output()
|
|
|
|
});
|
|
|
|
|
|
|
|
match out {
|
|
|
|
Err(err) => bail!(
|
|
|
|
"failed to run the Python interpreter at {}: {}",
|
|
|
|
interpreter.display(),
|
|
|
|
err
|
|
|
|
),
|
|
|
|
Ok(ok) if !ok.status.success() => bail!("Python script failed"),
|
2021-07-14 21:13:58 +00:00
|
|
|
Ok(ok) => Ok(String::from_utf8(ok.stdout)
|
|
|
|
.context("failed to parse Python script output as utf-8")?),
|
2021-05-19 20:50:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-16 22:33:51 +00:00
|
|
|
fn venv_interpreter(virtual_env: &OsStr, windows: bool) -> PathBuf {
|
|
|
|
if windows {
|
|
|
|
Path::new(virtual_env).join("Scripts").join("python.exe")
|
|
|
|
} else {
|
|
|
|
Path::new(virtual_env).join("bin").join("python")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn conda_env_interpreter(conda_prefix: &OsStr, windows: bool) -> PathBuf {
|
|
|
|
if windows {
|
|
|
|
Path::new(conda_prefix).join("python.exe")
|
|
|
|
} else {
|
|
|
|
Path::new(conda_prefix).join("bin").join("python")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn get_env_interpreter() -> Option<PathBuf> {
|
2021-05-19 20:50:25 +00:00
|
|
|
match (env_var("VIRTUAL_ENV"), env_var("CONDA_PREFIX")) {
|
2022-03-25 09:12:05 +00:00
|
|
|
// Use cfg rather than CARGO_CFG_TARGET_OS because this affects where files are located on the
|
2021-09-16 22:33:51 +00:00
|
|
|
// build host
|
|
|
|
(Some(dir), None) => Some(venv_interpreter(&dir, cfg!(windows))),
|
|
|
|
(None, Some(dir)) => Some(conda_env_interpreter(&dir, cfg!(windows))),
|
2021-05-19 20:50:25 +00:00
|
|
|
(Some(_), Some(_)) => {
|
|
|
|
warn!(
|
|
|
|
"Both VIRTUAL_ENV and CONDA_PREFIX are set. PyO3 will ignore both of these for \
|
|
|
|
locating the Python interpreter until you unset one of them."
|
|
|
|
);
|
|
|
|
None
|
|
|
|
}
|
|
|
|
(None, None) => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-05 21:43:26 +00:00
|
|
|
/// Attempts to locate a python interpreter.
|
|
|
|
///
|
|
|
|
/// Locations are checked in the order listed:
|
2021-08-06 07:49:36 +00:00
|
|
|
/// 1. If `PYO3_PYTHON` is set, this interpreter is used.
|
2021-08-05 21:43:26 +00:00
|
|
|
/// 2. If in a virtualenv, that environment's interpreter is used.
|
|
|
|
/// 3. `python`, if this is functional a Python 3.x interpreter
|
|
|
|
/// 4. `python3`, as above
|
2021-07-17 11:44:20 +00:00
|
|
|
pub fn find_interpreter() -> Result<PathBuf> {
|
2022-11-09 07:50:11 +00:00
|
|
|
// Trigger rebuilds when `PYO3_ENVIRONMENT_SIGNATURE` env var value changes
|
|
|
|
// See https://github.com/PyO3/pyo3/issues/2724
|
|
|
|
println!("cargo:rerun-if-env-changed=PYO3_ENVIRONMENT_SIGNATURE");
|
|
|
|
|
2021-05-19 20:50:25 +00:00
|
|
|
if let Some(exe) = env_var("PYO3_PYTHON") {
|
|
|
|
Ok(exe.into())
|
2021-09-16 22:33:51 +00:00
|
|
|
} else if let Some(env_interpreter) = get_env_interpreter() {
|
|
|
|
Ok(env_interpreter)
|
2021-05-19 20:50:25 +00:00
|
|
|
} else {
|
|
|
|
println!("cargo:rerun-if-env-changed=PATH");
|
|
|
|
["python", "python3"]
|
|
|
|
.iter()
|
|
|
|
.find(|bin| {
|
|
|
|
if let Ok(out) = Command::new(bin).arg("--version").output() {
|
|
|
|
// begin with `Python 3.X.X :: additional info`
|
|
|
|
out.stdout.starts_with(b"Python 3") || out.stderr.starts_with(b"Python 3")
|
|
|
|
} else {
|
|
|
|
false
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.map(PathBuf::from)
|
|
|
|
.ok_or_else(|| "no Python 3.x interpreter found".into())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-11 11:45:16 +00:00
|
|
|
/// Locates and extracts the build host Python interpreter configuration.
|
|
|
|
///
|
|
|
|
/// Lowers the configured Python version to `abi3_version` if required.
|
|
|
|
fn get_host_interpreter(abi3_version: Option<PythonVersion>) -> Result<InterpreterConfig> {
|
|
|
|
let interpreter_path = find_interpreter()?;
|
|
|
|
|
|
|
|
let mut interpreter_config = InterpreterConfig::from_interpreter(interpreter_path)?;
|
|
|
|
interpreter_config.fixup_for_abi3_version(abi3_version)?;
|
|
|
|
|
|
|
|
Ok(interpreter_config)
|
|
|
|
}
|
|
|
|
|
2021-08-05 21:43:26 +00:00
|
|
|
/// Generates an interpreter config suitable for cross-compilation.
|
|
|
|
///
|
|
|
|
/// This must be called from PyO3's build script, because it relies on environment variables such as
|
|
|
|
/// CARGO_CFG_TARGET_OS which aren't available at any other time.
|
2021-08-04 11:54:45 +00:00
|
|
|
pub fn make_cross_compile_config() -> Result<Option<InterpreterConfig>> {
|
2022-03-25 09:12:05 +00:00
|
|
|
let interpreter_config = if let Some(cross_config) = cross_compiling_from_cargo_env()? {
|
2022-03-16 07:54:34 +00:00
|
|
|
let mut interpreter_config = load_cross_compile_config(cross_config)?;
|
2022-03-25 09:12:05 +00:00
|
|
|
interpreter_config.fixup_for_abi3_version(get_abi3_version())?;
|
2022-03-16 07:54:34 +00:00
|
|
|
Some(interpreter_config)
|
2021-08-04 11:54:45 +00:00
|
|
|
} else {
|
2022-03-16 07:54:34 +00:00
|
|
|
None
|
2021-08-04 11:54:45 +00:00
|
|
|
};
|
2022-03-16 07:54:34 +00:00
|
|
|
|
|
|
|
Ok(interpreter_config)
|
2021-08-04 11:54:45 +00:00
|
|
|
}
|
|
|
|
|
2021-08-05 21:43:26 +00:00
|
|
|
/// Generates an interpreter config which will be hard-coded into the pyo3-build-config crate.
|
|
|
|
/// Only used by `pyo3-build-config` build script.
|
2022-04-06 14:41:57 +00:00
|
|
|
#[allow(dead_code, unused_mut)]
|
2021-06-01 17:31:34 +00:00
|
|
|
pub fn make_interpreter_config() -> Result<InterpreterConfig> {
|
2022-04-11 11:45:16 +00:00
|
|
|
let host = Triple::host();
|
2022-04-05 13:51:24 +00:00
|
|
|
let abi3_version = get_abi3_version();
|
|
|
|
|
2022-04-11 11:45:16 +00:00
|
|
|
// See if we can safely skip the Python interpreter configuration detection.
|
|
|
|
// Unix "abi3" extension modules can usually be built without any interpreter.
|
|
|
|
let need_interpreter = abi3_version.is_none() || require_libdir_for_target(&host);
|
|
|
|
|
2022-04-05 13:51:24 +00:00
|
|
|
if have_python_interpreter() {
|
2022-04-11 11:45:16 +00:00
|
|
|
match get_host_interpreter(abi3_version) {
|
|
|
|
Ok(interpreter_config) => return Ok(interpreter_config),
|
|
|
|
// Bail if the interpreter configuration is required to build.
|
|
|
|
Err(e) if need_interpreter => return Err(e),
|
|
|
|
_ => {
|
|
|
|
// Fall back to the "abi3" defaults just as if `PYO3_NO_PYTHON`
|
|
|
|
// environment variable was set.
|
|
|
|
warn!("Compiling without a working Python interpreter.");
|
|
|
|
}
|
2022-04-06 14:41:57 +00:00
|
|
|
}
|
2022-04-05 13:51:24 +00:00
|
|
|
} else {
|
2022-04-11 11:45:16 +00:00
|
|
|
ensure!(
|
|
|
|
abi3_version.is_some(),
|
|
|
|
"An abi3-py3* feature must be specified when compiling without a Python interpreter."
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
let mut interpreter_config = default_abi3_config(&host, abi3_version.unwrap());
|
|
|
|
|
|
|
|
// Auto generate python3.dll import libraries for Windows targets.
|
|
|
|
#[cfg(feature = "python3-dll-a")]
|
|
|
|
{
|
2022-05-10 07:46:47 +00:00
|
|
|
let py_version = if interpreter_config.abi3 {
|
|
|
|
None
|
|
|
|
} else {
|
|
|
|
Some(interpreter_config.version)
|
|
|
|
};
|
2022-07-14 05:16:06 +00:00
|
|
|
interpreter_config.lib_dir = self::import_lib::generate_import_lib(
|
|
|
|
&host,
|
|
|
|
interpreter_config.implementation,
|
|
|
|
py_version,
|
|
|
|
)?;
|
2022-04-05 13:51:24 +00:00
|
|
|
}
|
2022-04-11 11:45:16 +00:00
|
|
|
|
|
|
|
Ok(interpreter_config)
|
2021-05-19 20:50:25 +00:00
|
|
|
}
|
|
|
|
|
2022-04-12 15:51:30 +00:00
|
|
|
fn escape(bytes: &[u8]) -> String {
|
|
|
|
let mut escaped = String::with_capacity(2 * bytes.len());
|
|
|
|
|
|
|
|
for byte in bytes {
|
|
|
|
const LUT: &[u8; 16] = b"0123456789abcdef";
|
|
|
|
|
|
|
|
escaped.push(LUT[(byte >> 4) as usize] as char);
|
|
|
|
escaped.push(LUT[(byte & 0x0F) as usize] as char);
|
|
|
|
}
|
|
|
|
|
|
|
|
escaped
|
|
|
|
}
|
|
|
|
|
|
|
|
fn unescape(escaped: &str) -> Vec<u8> {
|
|
|
|
assert!(escaped.len() % 2 == 0, "invalid hex encoding");
|
|
|
|
|
|
|
|
let mut bytes = Vec::with_capacity(escaped.len() / 2);
|
|
|
|
|
|
|
|
for chunk in escaped.as_bytes().chunks_exact(2) {
|
|
|
|
fn unhex(hex: u8) -> u8 {
|
|
|
|
match hex {
|
|
|
|
b'a'..=b'f' => hex - b'a' + 10,
|
|
|
|
b'0'..=b'9' => hex - b'0',
|
|
|
|
_ => panic!("invalid hex encoding"),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bytes.push(unhex(chunk[0]) << 4 | unhex(chunk[1]));
|
|
|
|
}
|
|
|
|
|
|
|
|
bytes
|
|
|
|
}
|
|
|
|
|
2021-06-01 17:31:34 +00:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
2022-03-25 09:12:05 +00:00
|
|
|
use target_lexicon::triple;
|
2021-06-01 17:31:34 +00:00
|
|
|
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
#[test]
|
2021-08-06 07:49:36 +00:00
|
|
|
fn test_config_file_roundtrip() {
|
2021-06-01 17:31:34 +00:00
|
|
|
let config = InterpreterConfig {
|
|
|
|
abi3: true,
|
2021-11-19 10:45:27 +00:00
|
|
|
build_flags: BuildFlags::default(),
|
2021-08-03 20:17:17 +00:00
|
|
|
pointer_width: Some(32),
|
2021-06-01 17:31:34 +00:00
|
|
|
executable: Some("executable".into()),
|
|
|
|
implementation: PythonImplementation::CPython,
|
2021-08-03 20:17:17 +00:00
|
|
|
lib_name: Some("lib_name".into()),
|
|
|
|
lib_dir: Some("lib_dir".into()),
|
2021-06-01 17:31:34 +00:00
|
|
|
shared: true,
|
|
|
|
version: MINIMUM_SUPPORTED_VERSION,
|
2021-08-14 18:10:53 +00:00
|
|
|
suppress_build_script_link_lines: true,
|
2021-08-14 17:48:56 +00:00
|
|
|
extra_build_script_lines: vec!["cargo:test1".to_string(), "cargo:test2".to_string()],
|
2021-06-01 17:31:34 +00:00
|
|
|
};
|
|
|
|
let mut buf: Vec<u8> = Vec::new();
|
|
|
|
config.to_writer(&mut buf).unwrap();
|
2021-05-19 20:50:25 +00:00
|
|
|
|
2022-04-12 15:51:30 +00:00
|
|
|
assert_eq!(config, InterpreterConfig::from_reader(&*buf).unwrap());
|
2021-06-26 13:37:55 +00:00
|
|
|
|
|
|
|
// And some different options, for variety
|
|
|
|
|
|
|
|
let config = InterpreterConfig {
|
|
|
|
abi3: false,
|
|
|
|
build_flags: {
|
|
|
|
let mut flags = HashSet::new();
|
|
|
|
flags.insert(BuildFlag::Py_DEBUG);
|
|
|
|
flags.insert(BuildFlag::Other(String::from("Py_SOME_FLAG")));
|
|
|
|
BuildFlags(flags)
|
|
|
|
},
|
2021-08-03 20:17:17 +00:00
|
|
|
pointer_width: None,
|
2021-06-26 13:37:55 +00:00
|
|
|
executable: None,
|
|
|
|
implementation: PythonImplementation::PyPy,
|
2021-08-03 20:17:17 +00:00
|
|
|
lib_dir: None,
|
|
|
|
lib_name: None,
|
2021-06-26 13:37:55 +00:00
|
|
|
shared: true,
|
|
|
|
version: PythonVersion {
|
|
|
|
major: 3,
|
|
|
|
minor: 10,
|
|
|
|
},
|
2021-08-14 18:10:53 +00:00
|
|
|
suppress_build_script_link_lines: false,
|
2021-08-14 17:48:56 +00:00
|
|
|
extra_build_script_lines: vec![],
|
2021-06-26 13:37:55 +00:00
|
|
|
};
|
|
|
|
let mut buf: Vec<u8> = Vec::new();
|
|
|
|
config.to_writer(&mut buf).unwrap();
|
|
|
|
|
2022-04-12 15:51:30 +00:00
|
|
|
assert_eq!(config, InterpreterConfig::from_reader(&*buf).unwrap());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_config_file_roundtrip_with_escaping() {
|
|
|
|
let config = InterpreterConfig {
|
|
|
|
abi3: true,
|
|
|
|
build_flags: BuildFlags::default(),
|
|
|
|
pointer_width: Some(32),
|
|
|
|
executable: Some("executable".into()),
|
|
|
|
implementation: PythonImplementation::CPython,
|
|
|
|
lib_name: Some("lib_name".into()),
|
|
|
|
lib_dir: Some("lib_dir\\n".into()),
|
|
|
|
shared: true,
|
|
|
|
version: MINIMUM_SUPPORTED_VERSION,
|
|
|
|
suppress_build_script_link_lines: true,
|
|
|
|
extra_build_script_lines: vec!["cargo:test1".to_string(), "cargo:test2".to_string()],
|
|
|
|
};
|
|
|
|
let mut buf: Vec<u8> = Vec::new();
|
|
|
|
config.to_writer(&mut buf).unwrap();
|
|
|
|
|
|
|
|
let buf = unescape(&escape(&buf));
|
|
|
|
|
|
|
|
assert_eq!(config, InterpreterConfig::from_reader(&*buf).unwrap());
|
2021-06-26 13:37:55 +00:00
|
|
|
}
|
|
|
|
|
2021-08-06 07:49:36 +00:00
|
|
|
#[test]
|
|
|
|
fn test_config_file_defaults() {
|
|
|
|
// Only version is required
|
|
|
|
assert_eq!(
|
2022-04-12 15:51:30 +00:00
|
|
|
InterpreterConfig::from_reader("version=3.7".as_bytes()).unwrap(),
|
2021-08-06 07:49:36 +00:00
|
|
|
InterpreterConfig {
|
2021-11-19 10:45:27 +00:00
|
|
|
version: PythonVersion { major: 3, minor: 7 },
|
2021-08-06 07:49:36 +00:00
|
|
|
implementation: PythonImplementation::CPython,
|
|
|
|
shared: true,
|
|
|
|
abi3: false,
|
|
|
|
lib_name: None,
|
|
|
|
lib_dir: None,
|
|
|
|
executable: None,
|
|
|
|
pointer_width: None,
|
|
|
|
build_flags: BuildFlags::default(),
|
2021-08-14 18:10:53 +00:00
|
|
|
suppress_build_script_link_lines: false,
|
2021-08-14 17:48:56 +00:00
|
|
|
extra_build_script_lines: vec![],
|
2021-08-06 07:49:36 +00:00
|
|
|
}
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2023-01-29 01:50:32 +00:00
|
|
|
#[test]
|
|
|
|
fn test_config_file_unknown_keys() {
|
|
|
|
// ext_suffix is unknown to pyo3-build-config, but it shouldn't error
|
|
|
|
assert_eq!(
|
|
|
|
InterpreterConfig::from_reader("version=3.7\next_suffix=.python37.so".as_bytes())
|
|
|
|
.unwrap(),
|
|
|
|
InterpreterConfig {
|
|
|
|
version: PythonVersion { major: 3, minor: 7 },
|
|
|
|
implementation: PythonImplementation::CPython,
|
|
|
|
shared: true,
|
|
|
|
abi3: false,
|
|
|
|
lib_name: None,
|
|
|
|
lib_dir: None,
|
|
|
|
executable: None,
|
|
|
|
pointer_width: None,
|
|
|
|
build_flags: BuildFlags::default(),
|
|
|
|
suppress_build_script_link_lines: false,
|
|
|
|
extra_build_script_lines: vec![],
|
|
|
|
}
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-08-06 07:49:36 +00:00
|
|
|
#[test]
|
|
|
|
fn build_flags_default() {
|
|
|
|
assert_eq!(BuildFlags::default(), BuildFlags::new());
|
|
|
|
}
|
|
|
|
|
2021-06-26 13:37:55 +00:00
|
|
|
#[test]
|
2021-12-16 00:18:37 +00:00
|
|
|
fn build_flags_from_sysconfigdata() {
|
|
|
|
let mut sysconfigdata = Sysconfigdata::new();
|
2021-06-26 13:37:55 +00:00
|
|
|
|
2021-12-16 00:18:37 +00:00
|
|
|
assert_eq!(
|
|
|
|
BuildFlags::from_sysconfigdata(&sysconfigdata).0,
|
|
|
|
HashSet::new()
|
|
|
|
);
|
2021-06-26 13:37:55 +00:00
|
|
|
|
|
|
|
for flag in &BuildFlags::ALL {
|
2021-12-16 00:18:37 +00:00
|
|
|
sysconfigdata.insert(flag.to_string(), "0".into());
|
2021-06-26 13:37:55 +00:00
|
|
|
}
|
|
|
|
|
2021-12-16 00:18:37 +00:00
|
|
|
assert_eq!(
|
|
|
|
BuildFlags::from_sysconfigdata(&sysconfigdata).0,
|
|
|
|
HashSet::new()
|
|
|
|
);
|
2021-06-26 13:37:55 +00:00
|
|
|
|
|
|
|
let mut expected_flags = HashSet::new();
|
|
|
|
for flag in &BuildFlags::ALL {
|
2021-12-16 00:18:37 +00:00
|
|
|
sysconfigdata.insert(flag.to_string(), "1".into());
|
2021-06-26 13:37:55 +00:00
|
|
|
expected_flags.insert(flag.clone());
|
|
|
|
}
|
|
|
|
|
2021-12-16 00:18:37 +00:00
|
|
|
assert_eq!(
|
|
|
|
BuildFlags::from_sysconfigdata(&sysconfigdata).0,
|
|
|
|
expected_flags
|
|
|
|
);
|
2021-06-26 13:37:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2023-08-15 07:41:22 +00:00
|
|
|
fn build_flags_fixup() {
|
2021-08-06 07:49:36 +00:00
|
|
|
let mut build_flags = BuildFlags::new();
|
2021-06-26 13:37:55 +00:00
|
|
|
|
2023-08-15 07:41:22 +00:00
|
|
|
build_flags = build_flags.fixup();
|
|
|
|
assert!(build_flags.0.is_empty());
|
2021-06-26 13:37:55 +00:00
|
|
|
|
|
|
|
build_flags.0.insert(BuildFlag::Py_DEBUG);
|
|
|
|
|
2023-08-15 07:41:22 +00:00
|
|
|
build_flags = build_flags.fixup();
|
2021-06-26 13:37:55 +00:00
|
|
|
|
2023-08-15 07:41:22 +00:00
|
|
|
// Py_DEBUG implies Py_REF_DEBUG
|
2021-06-26 13:37:55 +00:00
|
|
|
assert!(build_flags.0.contains(&BuildFlag::Py_REF_DEBUG));
|
2021-05-19 20:50:25 +00:00
|
|
|
}
|
2021-08-06 07:49:36 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn parse_script_output() {
|
|
|
|
let output = "foo bar\nbar foobar\n\n";
|
|
|
|
let map = super::parse_script_output(output);
|
|
|
|
assert_eq!(map.len(), 2);
|
|
|
|
assert_eq!(map["foo"], "bar");
|
|
|
|
assert_eq!(map["bar"], "foobar");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn config_from_interpreter() {
|
|
|
|
// Smoke test to just see whether this works
|
|
|
|
//
|
|
|
|
// PyO3's CI is dependent on Python being installed, so this should be reliable.
|
|
|
|
assert!(make_interpreter_config().is_ok())
|
|
|
|
}
|
|
|
|
|
2021-12-16 00:18:37 +00:00
|
|
|
#[test]
|
|
|
|
fn config_from_empty_sysconfigdata() {
|
|
|
|
let sysconfigdata = Sysconfigdata::new();
|
|
|
|
assert!(InterpreterConfig::from_sysconfigdata(&sysconfigdata).is_err());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn config_from_sysconfigdata() {
|
|
|
|
let mut sysconfigdata = Sysconfigdata::new();
|
|
|
|
// these are the minimal values required such that InterpreterConfig::from_sysconfigdata
|
|
|
|
// does not error
|
|
|
|
sysconfigdata.insert("SOABI", "cpython-37m-x86_64-linux-gnu");
|
|
|
|
sysconfigdata.insert("VERSION", "3.7");
|
|
|
|
sysconfigdata.insert("Py_ENABLE_SHARED", "1");
|
|
|
|
sysconfigdata.insert("LIBDIR", "/usr/lib");
|
|
|
|
sysconfigdata.insert("LDVERSION", "3.7m");
|
|
|
|
sysconfigdata.insert("SIZEOF_VOID_P", "8");
|
|
|
|
assert_eq!(
|
|
|
|
InterpreterConfig::from_sysconfigdata(&sysconfigdata).unwrap(),
|
|
|
|
InterpreterConfig {
|
|
|
|
abi3: false,
|
|
|
|
build_flags: BuildFlags::from_sysconfigdata(&sysconfigdata),
|
|
|
|
pointer_width: Some(64),
|
|
|
|
executable: None,
|
|
|
|
implementation: PythonImplementation::CPython,
|
|
|
|
lib_dir: Some("/usr/lib".into()),
|
|
|
|
lib_name: Some("python3.7m".into()),
|
|
|
|
shared: true,
|
|
|
|
version: PythonVersion::PY37,
|
|
|
|
suppress_build_script_link_lines: false,
|
|
|
|
extra_build_script_lines: vec![],
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2022-03-17 07:41:26 +00:00
|
|
|
#[test]
|
|
|
|
fn config_from_sysconfigdata_framework() {
|
|
|
|
let mut sysconfigdata = Sysconfigdata::new();
|
|
|
|
sysconfigdata.insert("SOABI", "cpython-37m-x86_64-linux-gnu");
|
|
|
|
sysconfigdata.insert("VERSION", "3.7");
|
|
|
|
// PYTHONFRAMEWORK should override Py_ENABLE_SHARED
|
|
|
|
sysconfigdata.insert("Py_ENABLE_SHARED", "0");
|
|
|
|
sysconfigdata.insert("PYTHONFRAMEWORK", "Python");
|
|
|
|
sysconfigdata.insert("LIBDIR", "/usr/lib");
|
|
|
|
sysconfigdata.insert("LDVERSION", "3.7m");
|
|
|
|
sysconfigdata.insert("SIZEOF_VOID_P", "8");
|
|
|
|
assert_eq!(
|
|
|
|
InterpreterConfig::from_sysconfigdata(&sysconfigdata).unwrap(),
|
|
|
|
InterpreterConfig {
|
|
|
|
abi3: false,
|
|
|
|
build_flags: BuildFlags::from_sysconfigdata(&sysconfigdata),
|
|
|
|
pointer_width: Some(64),
|
|
|
|
executable: None,
|
|
|
|
implementation: PythonImplementation::CPython,
|
|
|
|
lib_dir: Some("/usr/lib".into()),
|
|
|
|
lib_name: Some("python3.7m".into()),
|
|
|
|
shared: true,
|
|
|
|
version: PythonVersion::PY37,
|
|
|
|
suppress_build_script_link_lines: false,
|
|
|
|
extra_build_script_lines: vec![],
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
sysconfigdata = Sysconfigdata::new();
|
|
|
|
sysconfigdata.insert("SOABI", "cpython-37m-x86_64-linux-gnu");
|
|
|
|
sysconfigdata.insert("VERSION", "3.7");
|
|
|
|
// An empty PYTHONFRAMEWORK means it is not a framework
|
|
|
|
sysconfigdata.insert("Py_ENABLE_SHARED", "0");
|
|
|
|
sysconfigdata.insert("PYTHONFRAMEWORK", "");
|
|
|
|
sysconfigdata.insert("LIBDIR", "/usr/lib");
|
|
|
|
sysconfigdata.insert("LDVERSION", "3.7m");
|
|
|
|
sysconfigdata.insert("SIZEOF_VOID_P", "8");
|
|
|
|
assert_eq!(
|
|
|
|
InterpreterConfig::from_sysconfigdata(&sysconfigdata).unwrap(),
|
|
|
|
InterpreterConfig {
|
|
|
|
abi3: false,
|
|
|
|
build_flags: BuildFlags::from_sysconfigdata(&sysconfigdata),
|
|
|
|
pointer_width: Some(64),
|
|
|
|
executable: None,
|
|
|
|
implementation: PythonImplementation::CPython,
|
|
|
|
lib_dir: Some("/usr/lib".into()),
|
|
|
|
lib_name: Some("python3.7m".into()),
|
|
|
|
shared: false,
|
|
|
|
version: PythonVersion::PY37,
|
|
|
|
suppress_build_script_link_lines: false,
|
|
|
|
extra_build_script_lines: vec![],
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2022-04-05 13:51:24 +00:00
|
|
|
#[test]
|
|
|
|
fn windows_hardcoded_abi3_compile() {
|
|
|
|
let host = triple!("x86_64-pc-windows-msvc");
|
|
|
|
let min_version = "3.7".parse().unwrap();
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
default_abi3_config(&host, min_version),
|
|
|
|
InterpreterConfig {
|
|
|
|
implementation: PythonImplementation::CPython,
|
|
|
|
version: PythonVersion { major: 3, minor: 7 },
|
|
|
|
shared: true,
|
|
|
|
abi3: true,
|
|
|
|
lib_name: Some("python3".into()),
|
|
|
|
lib_dir: None,
|
|
|
|
executable: None,
|
|
|
|
pointer_width: None,
|
|
|
|
build_flags: BuildFlags::default(),
|
|
|
|
suppress_build_script_link_lines: false,
|
|
|
|
extra_build_script_lines: vec![],
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn unix_hardcoded_abi3_compile() {
|
|
|
|
let host = triple!("x86_64-unknown-linux-gnu");
|
|
|
|
let min_version = "3.9".parse().unwrap();
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
default_abi3_config(&host, min_version),
|
|
|
|
InterpreterConfig {
|
|
|
|
implementation: PythonImplementation::CPython,
|
|
|
|
version: PythonVersion { major: 3, minor: 9 },
|
|
|
|
shared: true,
|
|
|
|
abi3: true,
|
|
|
|
lib_name: None,
|
|
|
|
lib_dir: None,
|
|
|
|
executable: None,
|
|
|
|
pointer_width: None,
|
|
|
|
build_flags: BuildFlags::default(),
|
|
|
|
suppress_build_script_link_lines: false,
|
|
|
|
extra_build_script_lines: vec![],
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-08-06 07:49:36 +00:00
|
|
|
#[test]
|
|
|
|
fn windows_hardcoded_cross_compile() {
|
2022-04-04 11:51:26 +00:00
|
|
|
let env_vars = CrossCompileEnvVars {
|
|
|
|
pyo3_cross: None,
|
|
|
|
pyo3_cross_lib_dir: Some("C:\\some\\path".into()),
|
|
|
|
pyo3_cross_python_implementation: None,
|
|
|
|
pyo3_cross_python_version: Some("3.7".into()),
|
2021-08-06 07:49:36 +00:00
|
|
|
};
|
|
|
|
|
2022-04-04 11:51:26 +00:00
|
|
|
let host = triple!("x86_64-unknown-linux-gnu");
|
|
|
|
let target = triple!("i686-pc-windows-msvc");
|
|
|
|
let cross_config =
|
|
|
|
CrossCompileConfig::try_from_env_vars_host_target(env_vars, &host, &target)
|
|
|
|
.unwrap()
|
|
|
|
.unwrap();
|
|
|
|
|
2021-08-06 07:49:36 +00:00
|
|
|
assert_eq!(
|
2022-03-24 07:10:05 +00:00
|
|
|
default_cross_compile(&cross_config).unwrap(),
|
2021-08-06 07:49:36 +00:00
|
|
|
InterpreterConfig {
|
|
|
|
implementation: PythonImplementation::CPython,
|
2021-11-19 10:45:27 +00:00
|
|
|
version: PythonVersion { major: 3, minor: 7 },
|
2021-08-06 07:49:36 +00:00
|
|
|
shared: true,
|
|
|
|
abi3: false,
|
2021-11-19 10:45:27 +00:00
|
|
|
lib_name: Some("python37".into()),
|
2021-08-06 07:49:36 +00:00
|
|
|
lib_dir: Some("C:\\some\\path".into()),
|
|
|
|
executable: None,
|
|
|
|
pointer_width: None,
|
2021-11-19 10:45:27 +00:00
|
|
|
build_flags: BuildFlags::default(),
|
2021-08-14 18:10:53 +00:00
|
|
|
suppress_build_script_link_lines: false,
|
2021-08-14 17:48:56 +00:00
|
|
|
extra_build_script_lines: vec![],
|
2021-08-06 07:49:36 +00:00
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2022-03-25 09:12:05 +00:00
|
|
|
#[test]
|
|
|
|
fn mingw_hardcoded_cross_compile() {
|
2022-04-04 11:51:26 +00:00
|
|
|
let env_vars = CrossCompileEnvVars {
|
|
|
|
pyo3_cross: None,
|
|
|
|
pyo3_cross_lib_dir: Some("/usr/lib/mingw".into()),
|
|
|
|
pyo3_cross_python_implementation: None,
|
|
|
|
pyo3_cross_python_version: Some("3.8".into()),
|
2022-03-25 09:12:05 +00:00
|
|
|
};
|
|
|
|
|
2022-04-04 11:51:26 +00:00
|
|
|
let host = triple!("x86_64-unknown-linux-gnu");
|
|
|
|
let target = triple!("i686-pc-windows-gnu");
|
|
|
|
let cross_config =
|
|
|
|
CrossCompileConfig::try_from_env_vars_host_target(env_vars, &host, &target)
|
|
|
|
.unwrap()
|
|
|
|
.unwrap();
|
|
|
|
|
2022-03-25 09:12:05 +00:00
|
|
|
assert_eq!(
|
2022-03-24 07:10:05 +00:00
|
|
|
default_cross_compile(&cross_config).unwrap(),
|
2022-03-25 09:12:05 +00:00
|
|
|
InterpreterConfig {
|
|
|
|
implementation: PythonImplementation::CPython,
|
|
|
|
version: PythonVersion { major: 3, minor: 8 },
|
|
|
|
shared: true,
|
|
|
|
abi3: false,
|
2022-05-11 07:29:51 +00:00
|
|
|
lib_name: Some("python38".into()),
|
2022-03-25 09:12:05 +00:00
|
|
|
lib_dir: Some("/usr/lib/mingw".into()),
|
|
|
|
executable: None,
|
|
|
|
pointer_width: None,
|
|
|
|
build_flags: BuildFlags::default(),
|
|
|
|
suppress_build_script_link_lines: false,
|
|
|
|
extra_build_script_lines: vec![],
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
2022-03-24 07:10:05 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn unix_hardcoded_cross_compile() {
|
2022-04-04 11:51:26 +00:00
|
|
|
let env_vars = CrossCompileEnvVars {
|
|
|
|
pyo3_cross: None,
|
|
|
|
pyo3_cross_lib_dir: Some("/usr/arm64/lib".into()),
|
|
|
|
pyo3_cross_python_implementation: None,
|
|
|
|
pyo3_cross_python_version: Some("3.9".into()),
|
2022-03-24 07:10:05 +00:00
|
|
|
};
|
|
|
|
|
2022-04-04 11:51:26 +00:00
|
|
|
let host = triple!("x86_64-unknown-linux-gnu");
|
|
|
|
let target = triple!("aarch64-unknown-linux-gnu");
|
|
|
|
let cross_config =
|
|
|
|
CrossCompileConfig::try_from_env_vars_host_target(env_vars, &host, &target)
|
|
|
|
.unwrap()
|
|
|
|
.unwrap();
|
|
|
|
|
2022-03-24 07:10:05 +00:00
|
|
|
assert_eq!(
|
|
|
|
default_cross_compile(&cross_config).unwrap(),
|
|
|
|
InterpreterConfig {
|
|
|
|
implementation: PythonImplementation::CPython,
|
|
|
|
version: PythonVersion { major: 3, minor: 9 },
|
|
|
|
shared: true,
|
|
|
|
abi3: false,
|
|
|
|
lib_name: Some("python3.9".into()),
|
|
|
|
lib_dir: Some("/usr/arm64/lib".into()),
|
|
|
|
executable: None,
|
|
|
|
pointer_width: None,
|
|
|
|
build_flags: BuildFlags::default(),
|
|
|
|
suppress_build_script_link_lines: false,
|
|
|
|
extra_build_script_lines: vec![],
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
2022-03-25 09:12:05 +00:00
|
|
|
|
2022-04-04 11:51:26 +00:00
|
|
|
#[test]
|
|
|
|
fn pypy_hardcoded_cross_compile() {
|
|
|
|
let env_vars = CrossCompileEnvVars {
|
|
|
|
pyo3_cross: None,
|
|
|
|
pyo3_cross_lib_dir: None,
|
|
|
|
pyo3_cross_python_implementation: Some("PyPy".into()),
|
|
|
|
pyo3_cross_python_version: Some("3.10".into()),
|
|
|
|
};
|
|
|
|
|
|
|
|
let triple = triple!("x86_64-unknown-linux-gnu");
|
|
|
|
let cross_config =
|
|
|
|
CrossCompileConfig::try_from_env_vars_host_target(env_vars, &triple, &triple)
|
|
|
|
.unwrap()
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
default_cross_compile(&cross_config).unwrap(),
|
|
|
|
InterpreterConfig {
|
|
|
|
implementation: PythonImplementation::PyPy,
|
|
|
|
version: PythonVersion {
|
|
|
|
major: 3,
|
|
|
|
minor: 10
|
|
|
|
},
|
|
|
|
shared: true,
|
|
|
|
abi3: false,
|
|
|
|
lib_name: Some("pypy3.10-c".into()),
|
|
|
|
lib_dir: None,
|
|
|
|
executable: None,
|
|
|
|
pointer_width: None,
|
|
|
|
build_flags: BuildFlags::default(),
|
|
|
|
suppress_build_script_link_lines: false,
|
|
|
|
extra_build_script_lines: vec![],
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-08-06 07:49:36 +00:00
|
|
|
#[test]
|
|
|
|
fn default_lib_name_windows() {
|
2021-11-15 05:24:29 +00:00
|
|
|
use PythonImplementation::*;
|
2021-08-06 07:49:36 +00:00
|
|
|
assert_eq!(
|
2021-11-15 05:24:29 +00:00
|
|
|
super::default_lib_name_windows(
|
2021-11-19 10:45:27 +00:00
|
|
|
PythonVersion { major: 3, minor: 7 },
|
2021-11-15 05:24:29 +00:00
|
|
|
CPython,
|
|
|
|
false,
|
2023-02-06 20:33:16 +00:00
|
|
|
false,
|
|
|
|
false,
|
2021-11-15 05:24:29 +00:00
|
|
|
),
|
2021-11-19 10:45:27 +00:00
|
|
|
"python37",
|
2021-08-06 07:49:36 +00:00
|
|
|
);
|
|
|
|
assert_eq!(
|
2021-11-15 05:24:29 +00:00
|
|
|
super::default_lib_name_windows(
|
2021-11-19 10:45:27 +00:00
|
|
|
PythonVersion { major: 3, minor: 7 },
|
2021-11-15 05:24:29 +00:00
|
|
|
CPython,
|
|
|
|
true,
|
2023-02-06 20:33:16 +00:00
|
|
|
false,
|
|
|
|
false,
|
2021-11-15 05:24:29 +00:00
|
|
|
),
|
2021-08-06 07:49:36 +00:00
|
|
|
"python3",
|
|
|
|
);
|
|
|
|
assert_eq!(
|
2021-11-15 05:24:29 +00:00
|
|
|
super::default_lib_name_windows(
|
2021-11-19 10:45:27 +00:00
|
|
|
PythonVersion { major: 3, minor: 7 },
|
2021-11-15 05:24:29 +00:00
|
|
|
CPython,
|
|
|
|
false,
|
2023-02-06 20:33:16 +00:00
|
|
|
true,
|
|
|
|
false,
|
2021-11-15 05:24:29 +00:00
|
|
|
),
|
2021-11-19 10:45:27 +00:00
|
|
|
"python3.7",
|
2021-08-06 07:49:36 +00:00
|
|
|
);
|
|
|
|
assert_eq!(
|
2021-11-15 05:24:29 +00:00
|
|
|
super::default_lib_name_windows(
|
2021-11-19 10:45:27 +00:00
|
|
|
PythonVersion { major: 3, minor: 7 },
|
2021-11-15 05:24:29 +00:00
|
|
|
CPython,
|
|
|
|
true,
|
2023-02-06 20:33:16 +00:00
|
|
|
true,
|
|
|
|
false,
|
2021-11-15 05:24:29 +00:00
|
|
|
),
|
2021-08-06 07:49:36 +00:00
|
|
|
"python3",
|
|
|
|
);
|
2021-11-15 05:24:29 +00:00
|
|
|
assert_eq!(
|
|
|
|
super::default_lib_name_windows(
|
2021-11-19 10:45:27 +00:00
|
|
|
PythonVersion { major: 3, minor: 7 },
|
2021-11-15 05:24:29 +00:00
|
|
|
PyPy,
|
|
|
|
true,
|
2023-02-06 20:33:16 +00:00
|
|
|
false,
|
|
|
|
false,
|
2021-11-15 05:24:29 +00:00
|
|
|
),
|
2021-11-19 10:45:27 +00:00
|
|
|
"python37",
|
2021-11-15 05:24:29 +00:00
|
|
|
);
|
2023-02-06 20:33:16 +00:00
|
|
|
assert_eq!(
|
|
|
|
super::default_lib_name_windows(
|
|
|
|
PythonVersion { major: 3, minor: 7 },
|
|
|
|
CPython,
|
|
|
|
false,
|
|
|
|
false,
|
|
|
|
true,
|
|
|
|
),
|
|
|
|
"python37_d",
|
|
|
|
);
|
|
|
|
// abi3 debug builds on windows use version-specific lib
|
|
|
|
// to workaround https://github.com/python/cpython/issues/101614
|
|
|
|
assert_eq!(
|
|
|
|
super::default_lib_name_windows(
|
|
|
|
PythonVersion { major: 3, minor: 7 },
|
|
|
|
CPython,
|
|
|
|
true,
|
|
|
|
false,
|
|
|
|
true,
|
|
|
|
),
|
|
|
|
"python37_d",
|
|
|
|
);
|
2021-08-06 07:49:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn default_lib_name_unix() {
|
|
|
|
use PythonImplementation::*;
|
2022-04-09 09:01:07 +00:00
|
|
|
// Defaults to python3.7m for CPython 3.7
|
2021-08-06 07:49:36 +00:00
|
|
|
assert_eq!(
|
2021-11-19 10:45:27 +00:00
|
|
|
super::default_lib_name_unix(PythonVersion { major: 3, minor: 7 }, CPython, None),
|
2022-04-09 09:01:07 +00:00
|
|
|
"python3.7m",
|
|
|
|
);
|
|
|
|
// Defaults to pythonX.Y for CPython 3.8+
|
|
|
|
assert_eq!(
|
|
|
|
super::default_lib_name_unix(PythonVersion { major: 3, minor: 8 }, CPython, None),
|
|
|
|
"python3.8",
|
2021-08-06 07:49:36 +00:00
|
|
|
);
|
|
|
|
assert_eq!(
|
|
|
|
super::default_lib_name_unix(PythonVersion { major: 3, minor: 9 }, CPython, None),
|
|
|
|
"python3.9",
|
|
|
|
);
|
|
|
|
// Can use ldversion to override for CPython
|
|
|
|
assert_eq!(
|
|
|
|
super::default_lib_name_unix(
|
|
|
|
PythonVersion { major: 3, minor: 9 },
|
|
|
|
CPython,
|
|
|
|
Some("3.7md")
|
|
|
|
),
|
|
|
|
"python3.7md",
|
|
|
|
);
|
|
|
|
|
2022-02-24 19:41:09 +00:00
|
|
|
// PyPy 3.7 ignores ldversion
|
2021-08-06 07:49:36 +00:00
|
|
|
assert_eq!(
|
2022-02-24 19:41:09 +00:00
|
|
|
super::default_lib_name_unix(PythonVersion { major: 3, minor: 7 }, PyPy, Some("3.7md")),
|
2021-08-06 07:49:36 +00:00
|
|
|
"pypy3-c",
|
|
|
|
);
|
2022-02-24 19:41:09 +00:00
|
|
|
|
|
|
|
// PyPy 3.9 includes ldversion
|
|
|
|
assert_eq!(
|
|
|
|
super::default_lib_name_unix(PythonVersion { major: 3, minor: 9 }, PyPy, Some("3.9d")),
|
|
|
|
"pypy3.9d-c",
|
|
|
|
);
|
2021-08-06 07:49:36 +00:00
|
|
|
}
|
|
|
|
|
2022-03-25 09:12:05 +00:00
|
|
|
#[test]
|
|
|
|
fn parse_cross_python_version() {
|
|
|
|
let env_vars = CrossCompileEnvVars {
|
|
|
|
pyo3_cross: None,
|
|
|
|
pyo3_cross_lib_dir: None,
|
|
|
|
pyo3_cross_python_version: Some("3.9".into()),
|
2022-04-04 11:51:26 +00:00
|
|
|
pyo3_cross_python_implementation: None,
|
2022-03-25 09:12:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
env_vars.parse_version().unwrap(),
|
|
|
|
Some(PythonVersion { major: 3, minor: 9 })
|
|
|
|
);
|
|
|
|
|
|
|
|
let env_vars = CrossCompileEnvVars {
|
|
|
|
pyo3_cross: None,
|
|
|
|
pyo3_cross_lib_dir: None,
|
|
|
|
pyo3_cross_python_version: None,
|
2022-04-04 11:51:26 +00:00
|
|
|
pyo3_cross_python_implementation: None,
|
2022-03-25 09:12:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
assert_eq!(env_vars.parse_version().unwrap(), None);
|
|
|
|
|
|
|
|
let env_vars = CrossCompileEnvVars {
|
|
|
|
pyo3_cross: None,
|
|
|
|
pyo3_cross_lib_dir: None,
|
|
|
|
pyo3_cross_python_version: Some("100".into()),
|
2022-04-04 11:51:26 +00:00
|
|
|
pyo3_cross_python_implementation: None,
|
2022-03-25 09:12:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
assert!(env_vars.parse_version().is_err());
|
|
|
|
}
|
|
|
|
|
2021-08-06 07:49:36 +00:00
|
|
|
#[test]
|
|
|
|
fn interpreter_version_reduced_to_abi3() {
|
|
|
|
let mut config = InterpreterConfig {
|
|
|
|
abi3: true,
|
2021-11-19 10:45:27 +00:00
|
|
|
build_flags: BuildFlags::default(),
|
2021-08-06 07:49:36 +00:00
|
|
|
pointer_width: None,
|
|
|
|
executable: None,
|
|
|
|
implementation: PythonImplementation::CPython,
|
|
|
|
lib_dir: None,
|
|
|
|
lib_name: None,
|
|
|
|
shared: true,
|
|
|
|
version: PythonVersion { major: 3, minor: 7 },
|
2021-08-14 18:10:53 +00:00
|
|
|
suppress_build_script_link_lines: false,
|
2021-08-14 17:48:56 +00:00
|
|
|
extra_build_script_lines: vec![],
|
2021-08-06 07:49:36 +00:00
|
|
|
};
|
|
|
|
|
2022-03-25 09:12:05 +00:00
|
|
|
config
|
|
|
|
.fixup_for_abi3_version(Some(PythonVersion { major: 3, minor: 7 }))
|
|
|
|
.unwrap();
|
2021-11-19 10:45:27 +00:00
|
|
|
assert_eq!(config.version, PythonVersion { major: 3, minor: 7 });
|
2021-08-06 07:49:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn abi3_version_cannot_be_higher_than_interpreter() {
|
|
|
|
let mut config = InterpreterConfig {
|
|
|
|
abi3: true,
|
|
|
|
build_flags: BuildFlags::new(),
|
|
|
|
pointer_width: None,
|
|
|
|
executable: None,
|
|
|
|
implementation: PythonImplementation::CPython,
|
|
|
|
lib_dir: None,
|
|
|
|
lib_name: None,
|
|
|
|
shared: true,
|
2021-11-19 10:45:27 +00:00
|
|
|
version: PythonVersion { major: 3, minor: 7 },
|
2021-08-14 18:10:53 +00:00
|
|
|
suppress_build_script_link_lines: false,
|
2021-08-14 17:48:56 +00:00
|
|
|
extra_build_script_lines: vec![],
|
2021-08-06 07:49:36 +00:00
|
|
|
};
|
|
|
|
|
2022-03-25 09:12:05 +00:00
|
|
|
assert!(config
|
|
|
|
.fixup_for_abi3_version(Some(PythonVersion { major: 3, minor: 8 }))
|
|
|
|
.unwrap_err()
|
|
|
|
.to_string()
|
|
|
|
.contains(
|
|
|
|
"cannot set a minimum Python version 3.8 higher than the interpreter version 3.7"
|
|
|
|
));
|
2021-08-06 07:49:36 +00:00
|
|
|
}
|
2021-08-29 07:43:26 +00:00
|
|
|
|
|
|
|
#[test]
|
2021-09-03 00:01:08 +00:00
|
|
|
#[cfg(all(
|
|
|
|
target_os = "linux",
|
|
|
|
target_arch = "x86_64",
|
|
|
|
feature = "resolve-config"
|
|
|
|
))]
|
2021-08-29 07:43:26 +00:00
|
|
|
fn parse_sysconfigdata() {
|
|
|
|
// A best effort attempt to get test coverage for the sysconfigdata parsing.
|
|
|
|
// Might not complete successfully depending on host installation; that's ok as long as
|
|
|
|
// CI demonstrates this path is covered!
|
|
|
|
|
|
|
|
let interpreter_config = crate::get();
|
|
|
|
|
|
|
|
let lib_dir = match &interpreter_config.lib_dir {
|
|
|
|
Some(lib_dir) => Path::new(lib_dir),
|
|
|
|
// Don't know where to search for sysconfigdata; never mind.
|
|
|
|
None => return,
|
|
|
|
};
|
|
|
|
|
|
|
|
let cross = CrossCompileConfig {
|
2022-03-23 12:18:42 +00:00
|
|
|
lib_dir: Some(lib_dir.into()),
|
2021-08-29 07:43:26 +00:00
|
|
|
version: Some(interpreter_config.version),
|
2022-04-04 11:51:26 +00:00
|
|
|
implementation: Some(interpreter_config.implementation),
|
2022-03-25 09:12:05 +00:00
|
|
|
target: triple!("x86_64-unknown-linux-gnu"),
|
2021-08-29 07:43:26 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
let sysconfigdata_path = match find_sysconfigdata(&cross) {
|
2022-03-23 12:18:42 +00:00
|
|
|
Ok(Some(path)) => path,
|
2021-08-29 07:43:26 +00:00
|
|
|
// Couldn't find a matching sysconfigdata; never mind!
|
2022-03-23 12:18:42 +00:00
|
|
|
_ => return,
|
2021-08-29 07:43:26 +00:00
|
|
|
};
|
2021-12-16 00:18:37 +00:00
|
|
|
let sysconfigdata = super::parse_sysconfigdata(sysconfigdata_path).unwrap();
|
|
|
|
let parsed_config = InterpreterConfig::from_sysconfigdata(&sysconfigdata).unwrap();
|
2021-08-29 07:43:26 +00:00
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
parsed_config,
|
|
|
|
InterpreterConfig {
|
|
|
|
abi3: false,
|
|
|
|
build_flags: BuildFlags(interpreter_config.build_flags.0.clone()),
|
|
|
|
pointer_width: Some(64),
|
|
|
|
executable: None,
|
|
|
|
implementation: PythonImplementation::CPython,
|
|
|
|
lib_dir: interpreter_config.lib_dir.to_owned(),
|
|
|
|
lib_name: interpreter_config.lib_name.to_owned(),
|
|
|
|
shared: true,
|
|
|
|
version: interpreter_config.version,
|
|
|
|
suppress_build_script_link_lines: false,
|
|
|
|
extra_build_script_lines: vec![],
|
|
|
|
}
|
|
|
|
)
|
|
|
|
}
|
2021-09-16 22:33:51 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_venv_interpreter() {
|
|
|
|
let base = OsStr::new("base");
|
|
|
|
assert_eq!(
|
2021-12-09 08:11:28 +00:00
|
|
|
venv_interpreter(base, true),
|
2021-09-16 22:33:51 +00:00
|
|
|
PathBuf::from_iter(&["base", "Scripts", "python.exe"])
|
|
|
|
);
|
|
|
|
assert_eq!(
|
2021-12-09 08:11:28 +00:00
|
|
|
venv_interpreter(base, false),
|
2021-09-16 22:33:51 +00:00
|
|
|
PathBuf::from_iter(&["base", "bin", "python"])
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_conda_env_interpreter() {
|
|
|
|
let base = OsStr::new("base");
|
|
|
|
assert_eq!(
|
2021-12-09 08:11:28 +00:00
|
|
|
conda_env_interpreter(base, true),
|
2021-09-16 22:33:51 +00:00
|
|
|
PathBuf::from_iter(&["base", "python.exe"])
|
|
|
|
);
|
|
|
|
assert_eq!(
|
2021-12-09 08:11:28 +00:00
|
|
|
conda_env_interpreter(base, false),
|
2021-09-16 22:33:51 +00:00
|
|
|
PathBuf::from_iter(&["base", "bin", "python"])
|
|
|
|
);
|
|
|
|
}
|
2021-12-16 00:18:37 +00:00
|
|
|
|
2022-03-25 09:12:05 +00:00
|
|
|
#[test]
|
|
|
|
fn test_not_cross_compiling_from_to() {
|
|
|
|
assert!(cross_compiling_from_to(
|
|
|
|
&triple!("x86_64-unknown-linux-gnu"),
|
|
|
|
&triple!("x86_64-unknown-linux-gnu"),
|
|
|
|
)
|
|
|
|
.unwrap()
|
|
|
|
.is_none());
|
|
|
|
|
|
|
|
assert!(cross_compiling_from_to(
|
|
|
|
&triple!("x86_64-apple-darwin"),
|
|
|
|
&triple!("x86_64-apple-darwin")
|
|
|
|
)
|
|
|
|
.unwrap()
|
|
|
|
.is_none());
|
|
|
|
|
|
|
|
assert!(cross_compiling_from_to(
|
|
|
|
&triple!("aarch64-apple-darwin"),
|
|
|
|
&triple!("x86_64-apple-darwin")
|
|
|
|
)
|
|
|
|
.unwrap()
|
|
|
|
.is_none());
|
|
|
|
|
|
|
|
assert!(cross_compiling_from_to(
|
|
|
|
&triple!("x86_64-apple-darwin"),
|
|
|
|
&triple!("aarch64-apple-darwin")
|
|
|
|
)
|
|
|
|
.unwrap()
|
|
|
|
.is_none());
|
|
|
|
|
|
|
|
assert!(cross_compiling_from_to(
|
|
|
|
&triple!("x86_64-pc-windows-msvc"),
|
|
|
|
&triple!("i686-pc-windows-msvc")
|
|
|
|
)
|
|
|
|
.unwrap()
|
|
|
|
.is_none());
|
|
|
|
|
|
|
|
assert!(cross_compiling_from_to(
|
|
|
|
&triple!("x86_64-unknown-linux-gnu"),
|
|
|
|
&triple!("x86_64-unknown-linux-musl")
|
|
|
|
)
|
|
|
|
.unwrap()
|
|
|
|
.is_none());
|
|
|
|
}
|
|
|
|
|
2022-01-11 18:31:17 +00:00
|
|
|
#[test]
|
|
|
|
fn test_run_python_script() {
|
|
|
|
// as above, this should be okay in CI where Python is presumed installed
|
|
|
|
let interpreter = make_interpreter_config()
|
|
|
|
.expect("could not get InterpreterConfig from installed interpreter");
|
|
|
|
let out = interpreter
|
|
|
|
.run_python_script("print(2 + 2)")
|
|
|
|
.expect("failed to run Python script");
|
2022-01-11 18:43:11 +00:00
|
|
|
assert_eq!(out.trim_end(), "4");
|
2022-01-11 18:31:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_run_python_script_with_envs() {
|
|
|
|
// as above, this should be okay in CI where Python is presumed installed
|
|
|
|
let interpreter = make_interpreter_config()
|
|
|
|
.expect("could not get InterpreterConfig from installed interpreter");
|
|
|
|
let out = interpreter
|
|
|
|
.run_python_script_with_envs(
|
|
|
|
"import os; print(os.getenv('PYO3_TEST'))",
|
2022-01-11 20:39:19 +00:00
|
|
|
vec![("PYO3_TEST", "42")],
|
2022-01-11 18:31:17 +00:00
|
|
|
)
|
|
|
|
.expect("failed to run Python script");
|
2022-01-11 18:43:11 +00:00
|
|
|
assert_eq!(out.trim_end(), "42");
|
2022-01-11 18:31:17 +00:00
|
|
|
}
|
2023-10-22 22:15:08 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_build_script_outputs_base() {
|
|
|
|
let interpreter_config = InterpreterConfig {
|
|
|
|
implementation: PythonImplementation::CPython,
|
|
|
|
version: PythonVersion { major: 3, minor: 8 },
|
|
|
|
shared: true,
|
|
|
|
abi3: false,
|
|
|
|
lib_name: Some("python3".into()),
|
|
|
|
lib_dir: None,
|
|
|
|
executable: None,
|
|
|
|
pointer_width: None,
|
|
|
|
build_flags: BuildFlags::default(),
|
|
|
|
suppress_build_script_link_lines: false,
|
|
|
|
extra_build_script_lines: vec![],
|
|
|
|
};
|
|
|
|
assert_eq!(
|
|
|
|
interpreter_config.build_script_outputs(),
|
|
|
|
[
|
|
|
|
"cargo:rustc-cfg=Py_3_6".to_owned(),
|
|
|
|
"cargo:rustc-cfg=Py_3_7".to_owned(),
|
|
|
|
"cargo:rustc-cfg=Py_3_8".to_owned(),
|
|
|
|
]
|
|
|
|
);
|
|
|
|
|
|
|
|
let interpreter_config = InterpreterConfig {
|
|
|
|
implementation: PythonImplementation::PyPy,
|
|
|
|
..interpreter_config
|
|
|
|
};
|
|
|
|
assert_eq!(
|
|
|
|
interpreter_config.build_script_outputs(),
|
|
|
|
[
|
|
|
|
"cargo:rustc-cfg=Py_3_6".to_owned(),
|
|
|
|
"cargo:rustc-cfg=Py_3_7".to_owned(),
|
|
|
|
"cargo:rustc-cfg=Py_3_8".to_owned(),
|
|
|
|
"cargo:rustc-cfg=PyPy".to_owned(),
|
|
|
|
]
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_build_script_outputs_abi3() {
|
|
|
|
let interpreter_config = InterpreterConfig {
|
|
|
|
implementation: PythonImplementation::CPython,
|
|
|
|
version: PythonVersion { major: 3, minor: 7 },
|
|
|
|
shared: true,
|
|
|
|
abi3: true,
|
|
|
|
lib_name: Some("python3".into()),
|
|
|
|
lib_dir: None,
|
|
|
|
executable: None,
|
|
|
|
pointer_width: None,
|
|
|
|
build_flags: BuildFlags::default(),
|
|
|
|
suppress_build_script_link_lines: false,
|
|
|
|
extra_build_script_lines: vec![],
|
|
|
|
};
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
interpreter_config.build_script_outputs(),
|
|
|
|
[
|
|
|
|
"cargo:rustc-cfg=Py_3_6".to_owned(),
|
|
|
|
"cargo:rustc-cfg=Py_3_7".to_owned(),
|
|
|
|
"cargo:rustc-cfg=Py_LIMITED_API".to_owned(),
|
|
|
|
]
|
|
|
|
);
|
|
|
|
|
|
|
|
let interpreter_config = InterpreterConfig {
|
|
|
|
implementation: PythonImplementation::PyPy,
|
|
|
|
..interpreter_config
|
|
|
|
};
|
|
|
|
assert_eq!(
|
|
|
|
interpreter_config.build_script_outputs(),
|
|
|
|
[
|
|
|
|
"cargo:rustc-cfg=Py_3_6".to_owned(),
|
|
|
|
"cargo:rustc-cfg=Py_3_7".to_owned(),
|
|
|
|
"cargo:rustc-cfg=PyPy".to_owned(),
|
|
|
|
"cargo:warning=PyPy does not yet support abi3 so the build artifacts \
|
|
|
|
will be version-specific. See https://foss.heptapod.net/pypy/pypy/-/issues/3397 \
|
|
|
|
for more information."
|
|
|
|
.to_owned(),
|
|
|
|
]
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_build_script_outputs_debug() {
|
|
|
|
let mut build_flags = BuildFlags::default();
|
|
|
|
build_flags.0.insert(BuildFlag::Py_DEBUG);
|
|
|
|
let interpreter_config = InterpreterConfig {
|
|
|
|
implementation: PythonImplementation::CPython,
|
|
|
|
version: PythonVersion { major: 3, minor: 7 },
|
|
|
|
shared: true,
|
|
|
|
abi3: false,
|
|
|
|
lib_name: Some("python3".into()),
|
|
|
|
lib_dir: None,
|
|
|
|
executable: None,
|
|
|
|
pointer_width: None,
|
|
|
|
build_flags,
|
|
|
|
suppress_build_script_link_lines: false,
|
|
|
|
extra_build_script_lines: vec![],
|
|
|
|
};
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
interpreter_config.build_script_outputs(),
|
|
|
|
[
|
|
|
|
"cargo:rustc-cfg=Py_3_6".to_owned(),
|
|
|
|
"cargo:rustc-cfg=Py_3_7".to_owned(),
|
|
|
|
"cargo:rustc-cfg=py_sys_config=\"Py_DEBUG\"".to_owned(),
|
|
|
|
]
|
|
|
|
);
|
|
|
|
}
|
2021-05-19 20:50:25 +00:00
|
|
|
}
|