2020-05-04 18:51:19 +00:00
|
|
|
use std::{
|
2020-12-30 23:45:03 +00:00
|
|
|
collections::{HashMap, HashSet},
|
2020-05-04 18:51:19 +00:00
|
|
|
convert::AsRef,
|
2020-12-30 16:27:18 +00:00
|
|
|
env,
|
2020-08-17 19:12:12 +00:00
|
|
|
fs::{self, DirEntry, File},
|
2020-05-04 18:51:19 +00:00
|
|
|
io::{self, BufRead, BufReader},
|
|
|
|
path::{Path, PathBuf},
|
|
|
|
process::{Command, Stdio},
|
|
|
|
str::FromStr,
|
|
|
|
};
|
2020-03-08 07:17:25 +00:00
|
|
|
|
2020-10-31 07:35:14 +00:00
|
|
|
/// Minimum required Python version.
|
|
|
|
const PY3_MIN_MINOR: u8 = 6;
|
|
|
|
/// Maximum Python version that can be used as minimum required Python version with abi3.
|
|
|
|
const ABI3_MAX_MINOR: u8 = 9;
|
2020-03-08 07:17:25 +00:00
|
|
|
const CFG_KEY: &str = "py_sys_config";
|
|
|
|
|
|
|
|
type Result<T> = std::result::Result<T, Box<dyn std::error::Error>>;
|
|
|
|
|
|
|
|
// A simple macro for returning an error. Resembles failure::bail and anyhow::bail.
|
|
|
|
macro_rules! bail {
|
|
|
|
($msg: expr) => { return Err($msg.into()); };
|
|
|
|
($fmt: literal $(, $args: expr)+) => { return Err(format!($fmt $(,$args)+).into()); };
|
2019-09-07 23:37:17 +00:00
|
|
|
}
|
2017-07-18 01:33:27 +00:00
|
|
|
|
2021-03-05 06:27:36 +00:00
|
|
|
// Show warning. If needed, please extend this macro to support arguments.
|
|
|
|
macro_rules! warn {
|
|
|
|
($msg: literal) => {
|
|
|
|
println!(concat!("cargo:warning=", $msg));
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2019-05-16 21:24:55 +00:00
|
|
|
/// Information returned from python interpreter
|
2020-05-04 18:51:19 +00:00
|
|
|
#[derive(Debug)]
|
2019-05-16 21:24:55 +00:00
|
|
|
struct InterpreterConfig {
|
|
|
|
version: PythonVersion,
|
|
|
|
libdir: Option<String>,
|
|
|
|
shared: bool,
|
|
|
|
ld_version: String,
|
|
|
|
/// Prefix used for determining the directory of libpython
|
|
|
|
base_prefix: String,
|
2020-05-04 18:51:19 +00:00
|
|
|
executable: PathBuf,
|
2020-03-23 17:01:59 +00:00
|
|
|
calcsize_pointer: Option<u32>,
|
2021-03-05 06:27:36 +00:00
|
|
|
implementation: PythonInterpreterKind,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl InterpreterConfig {
|
|
|
|
fn is_pypy(&self) -> bool {
|
|
|
|
self.implementation == PythonInterpreterKind::PyPy
|
|
|
|
}
|
2019-05-16 21:24:55 +00:00
|
|
|
}
|
|
|
|
|
2021-03-05 06:27:36 +00:00
|
|
|
#[derive(Debug, Clone, PartialEq, PartialOrd)]
|
2017-05-13 05:05:00 +00:00
|
|
|
struct PythonVersion {
|
|
|
|
major: u8,
|
2020-12-30 16:27:18 +00:00
|
|
|
minor: u8,
|
2021-03-05 06:27:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl PythonVersion {
|
|
|
|
const PY37: Self = PythonVersion { major: 3, minor: 7 };
|
2017-05-13 05:05:00 +00:00
|
|
|
}
|
|
|
|
|
2020-12-30 16:27:18 +00:00
|
|
|
#[derive(Debug, Clone, PartialEq)]
|
|
|
|
pub enum PythonInterpreterKind {
|
|
|
|
CPython,
|
|
|
|
PyPy,
|
2017-05-13 05:05:00 +00:00
|
|
|
}
|
|
|
|
|
2020-05-04 18:51:19 +00:00
|
|
|
impl FromStr for PythonInterpreterKind {
|
|
|
|
type Err = Box<dyn std::error::Error>;
|
|
|
|
fn from_str(s: &str) -> Result<Self> {
|
|
|
|
match s {
|
2020-06-18 09:49:43 +00:00
|
|
|
"CPython" => Ok(PythonInterpreterKind::CPython),
|
|
|
|
"PyPy" => Ok(PythonInterpreterKind::PyPy),
|
2020-12-30 16:27:18 +00:00
|
|
|
_ => bail!("Invalid interpreter: {}", s),
|
2020-05-04 18:51:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-05 06:27:36 +00:00
|
|
|
fn is_abi3() -> bool {
|
|
|
|
env::var_os("CARGO_FEATURE_ABI3").is_some()
|
|
|
|
}
|
|
|
|
|
2020-08-17 22:14:05 +00:00
|
|
|
trait GetPrimitive {
|
|
|
|
fn get_bool(&self, key: &str) -> Result<bool>;
|
|
|
|
fn get_numeric<T: FromStr>(&self, key: &str) -> Result<T>;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl GetPrimitive for HashMap<String, String> {
|
|
|
|
fn get_bool(&self, key: &str) -> Result<bool> {
|
|
|
|
match self
|
|
|
|
.get(key)
|
|
|
|
.map(|x| x.as_str())
|
|
|
|
.ok_or(format!("{} is not defined", key))?
|
|
|
|
{
|
|
|
|
"1" | "true" | "True" => Ok(true),
|
|
|
|
"0" | "false" | "False" => Ok(false),
|
2020-12-30 16:27:18 +00:00
|
|
|
_ => bail!("{} must be a bool (1/true/True or 0/false/False", key),
|
2020-08-17 22:14:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn get_numeric<T: FromStr>(&self, key: &str) -> Result<T> {
|
|
|
|
self.get(key)
|
|
|
|
.ok_or(format!("{} is not defined", key))?
|
|
|
|
.parse::<T>()
|
|
|
|
.map_err(|_| format!("Could not parse value of {}", key).into())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct CrossCompileConfig {
|
|
|
|
lib_dir: PathBuf,
|
|
|
|
include_dir: Option<PathBuf>,
|
2020-08-19 02:05:29 +00:00
|
|
|
version: Option<String>,
|
2020-08-17 19:12:12 +00:00
|
|
|
os: String,
|
|
|
|
arch: String,
|
2020-08-09 02:37:38 +00:00
|
|
|
}
|
|
|
|
|
2020-08-17 22:14:05 +00:00
|
|
|
impl CrossCompileConfig {
|
2020-08-09 02:37:38 +00:00
|
|
|
fn both() -> Result<Self> {
|
2020-08-17 22:14:05 +00:00
|
|
|
Ok(CrossCompileConfig {
|
2020-12-31 00:55:03 +00:00
|
|
|
include_dir: env::var_os("PYO3_CROSS_INCLUDE_DIR").map(Into::into),
|
2020-08-17 22:14:05 +00:00
|
|
|
..CrossCompileConfig::lib_only()?
|
2020-08-09 02:37:38 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
fn lib_only() -> Result<Self> {
|
2020-08-17 22:14:05 +00:00
|
|
|
Ok(CrossCompileConfig {
|
|
|
|
lib_dir: CrossCompileConfig::validate_variable("PYO3_CROSS_LIB_DIR")?,
|
2020-08-09 02:37:38 +00:00
|
|
|
include_dir: None,
|
2020-08-17 19:12:12 +00:00
|
|
|
os: env::var("CARGO_CFG_TARGET_OS").unwrap(),
|
|
|
|
arch: env::var("CARGO_CFG_TARGET_ARCH").unwrap(),
|
2020-08-19 16:11:14 +00:00
|
|
|
version: env::var_os("PYO3_CROSS_PYTHON_VERSION").map(|s| s.into_string().unwrap()),
|
2020-08-09 02:37:38 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-08-17 22:14:05 +00:00
|
|
|
fn validate_variable(var: &str) -> Result<PathBuf> {
|
|
|
|
let path = match env::var_os(var) {
|
|
|
|
Some(v) => v,
|
|
|
|
None => bail!(
|
2020-08-09 02:37:38 +00:00
|
|
|
"Must provide {} environment variable when cross-compiling",
|
|
|
|
var
|
|
|
|
),
|
|
|
|
};
|
|
|
|
|
|
|
|
if fs::metadata(&path).is_err() {
|
2020-08-17 22:14:05 +00:00
|
|
|
bail!("{} value of {:?} does not exist", var, path)
|
2020-08-09 02:37:38 +00:00
|
|
|
}
|
|
|
|
|
2020-08-17 22:14:05 +00:00
|
|
|
Ok(path.into())
|
2020-08-09 02:37:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-17 22:14:05 +00:00
|
|
|
fn cross_compiling() -> Result<Option<CrossCompileConfig>> {
|
2020-09-12 23:10:02 +00:00
|
|
|
let target = env::var("TARGET")?;
|
|
|
|
let host = env::var("HOST")?;
|
2020-11-10 08:21:11 +00:00
|
|
|
if target == host {
|
|
|
|
// Not cross-compiling
|
|
|
|
return Ok(None);
|
|
|
|
}
|
|
|
|
|
|
|
|
if target == "i686-pc-windows-msvc" && host == "x86_64-pc-windows-msvc" {
|
|
|
|
// Not cross-compiling to compile for 32-bit Python from windows 64-bit
|
|
|
|
return Ok(None);
|
|
|
|
}
|
|
|
|
|
2021-02-14 06:34:55 +00:00
|
|
|
if target == "x86_64-apple-darwin" && host == "aarch64-apple-darwin" {
|
|
|
|
// Not cross-compiling to compile for x86-64 Python from macOS arm64
|
|
|
|
return Ok(None);
|
|
|
|
}
|
|
|
|
if target == "aarch64-apple-darwin" && host == "x86_64-apple-darwin" {
|
|
|
|
// Not cross-compiling to compile for arm64 Python from macOS x86_64
|
|
|
|
return Ok(None);
|
|
|
|
}
|
|
|
|
|
2020-11-10 08:21:11 +00:00
|
|
|
if host.starts_with(&format!(
|
|
|
|
"{}-{}-{}",
|
|
|
|
env::var("CARGO_CFG_TARGET_ARCH")?,
|
|
|
|
env::var("CARGO_CFG_TARGET_VENDOR")?,
|
|
|
|
env::var("CARGO_CFG_TARGET_OS")?
|
|
|
|
)) {
|
|
|
|
// 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
|
2020-08-09 02:37:38 +00:00
|
|
|
return Ok(None);
|
|
|
|
}
|
|
|
|
|
|
|
|
if env::var("CARGO_CFG_TARGET_FAMILY")? == "windows" {
|
2020-11-10 08:21:11 +00:00
|
|
|
// Windows cross-compile uses both header includes and sysconfig
|
|
|
|
return Ok(Some(CrossCompileConfig::both()?));
|
2020-08-09 02:37:38 +00:00
|
|
|
}
|
2020-11-10 08:21:11 +00:00
|
|
|
|
|
|
|
// Cross-compiling on any other platform
|
|
|
|
Ok(Some(CrossCompileConfig::lib_only()?))
|
2020-08-09 02:37:38 +00:00
|
|
|
}
|
|
|
|
|
2018-05-26 10:04:58 +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
|
|
|
|
///
|
|
|
|
/// #[cfg(py_sys_config="{varname}"]
|
|
|
|
///
|
|
|
|
/// is the equivalent of #ifdef {varname} name in C.
|
|
|
|
///
|
|
|
|
/// see Misc/SpecialBuilds.txt in the python source for what these mean.
|
|
|
|
///
|
|
|
|
/// (hrm, this is sort of re-implementing what distutils does, except
|
|
|
|
/// by passing command line args instead of referring to a python.h)
|
2021-01-01 07:34:36 +00:00
|
|
|
struct BuildFlags(HashSet<&'static str>);
|
|
|
|
|
|
|
|
impl BuildFlags {
|
|
|
|
const ALL: [&'static str; 5] = [
|
|
|
|
"WITH_THREAD",
|
|
|
|
"Py_DEBUG",
|
|
|
|
"Py_REF_DEBUG",
|
|
|
|
"Py_TRACE_REFS",
|
|
|
|
"COUNT_ALLOCS",
|
|
|
|
];
|
|
|
|
|
|
|
|
fn from_config_map(config_map: &HashMap<String, String>) -> Self {
|
|
|
|
Self(
|
|
|
|
BuildFlags::ALL
|
|
|
|
.iter()
|
|
|
|
.copied()
|
|
|
|
.filter(|flag| config_map.get(*flag).map_or(false, |value| value == "1"))
|
|
|
|
.collect(),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Examine python's compile flags to pass to cfg by launching
|
|
|
|
/// the interpreter and printing variables of interest from
|
|
|
|
/// sysconfig.get_config_vars.
|
|
|
|
fn from_interpreter(python_path: &Path) -> Result<Self> {
|
|
|
|
if env::var("CARGO_CFG_TARGET_OS").unwrap() == "windows" {
|
|
|
|
return Ok(Self::windows_hardcoded());
|
|
|
|
}
|
2020-12-30 23:45:03 +00:00
|
|
|
|
2021-01-01 07:34:36 +00:00
|
|
|
let mut script = "import sysconfig; \
|
|
|
|
config = sysconfig.get_config_vars();"
|
|
|
|
.to_owned();
|
|
|
|
|
|
|
|
for k in BuildFlags::ALL.iter() {
|
|
|
|
script.push_str(&format!("print(config.get('{}', '0'));", k));
|
|
|
|
}
|
|
|
|
|
|
|
|
let stdout = run_python_script(python_path, &script)?;
|
|
|
|
let split_stdout: Vec<&str> = stdout.trim_end().lines().collect();
|
|
|
|
if split_stdout.len() != BuildFlags::ALL.len() {
|
|
|
|
bail!(
|
|
|
|
"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")
|
|
|
|
.map(|(&flag, _)| flag)
|
|
|
|
.collect();
|
|
|
|
|
|
|
|
Ok(Self(flags))
|
|
|
|
}
|
|
|
|
|
|
|
|
fn windows_hardcoded() -> Self {
|
|
|
|
// sysconfig is missing all the flags on windows, so we can't actually
|
|
|
|
// query the interpreter directly for its build flags.
|
|
|
|
//
|
|
|
|
// For the time being, this is the flags as defined in the python source's
|
|
|
|
// PC\pyconfig.h. This won't work correctly if someone has built their
|
|
|
|
// python with a modified pyconfig.h - sorry if that is you, you will have
|
|
|
|
// to comment/uncomment the lines below.
|
|
|
|
let mut flags = HashSet::new();
|
|
|
|
flags.insert("WITH_THREAD");
|
|
|
|
|
|
|
|
// This is defined #ifdef _DEBUG. The visual studio build seems to produce
|
|
|
|
// a specially named pythonXX_d.exe and pythonXX_d.dll when you build the
|
|
|
|
// Debug configuration, which this script doesn't currently support anyway.
|
|
|
|
// map.insert("Py_DEBUG", "1");
|
|
|
|
|
|
|
|
// Uncomment these manually if your python was built with these and you want
|
|
|
|
// the cfg flags to be set in rust.
|
|
|
|
//
|
|
|
|
// map.insert("Py_REF_DEBUG", "1");
|
|
|
|
// map.insert("Py_TRACE_REFS", "1");
|
|
|
|
// map.insert("COUNT_ALLOCS", 1");
|
|
|
|
Self(flags)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn fixup(&mut self, interpreter_config: &InterpreterConfig) {
|
|
|
|
if self.0.contains("Py_DEBUG") {
|
|
|
|
self.0.insert("Py_REF_DEBUG");
|
2021-03-05 06:27:36 +00:00
|
|
|
if interpreter_config.version <= PythonVersion::PY37 {
|
2021-01-01 07:34:36 +00:00
|
|
|
// Py_DEBUG only implies Py_TRACE_REFS until Python 3.7
|
|
|
|
self.0.insert("Py_TRACE_REFS");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// WITH_THREAD is always on for Python 3.7, and for PyPy.
|
2021-03-05 06:27:36 +00:00
|
|
|
if interpreter_config.is_pypy() || interpreter_config.version >= PythonVersion::PY37 {
|
2021-01-01 07:34:36 +00:00
|
|
|
self.0.insert("WITH_THREAD");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-05-13 05:05:00 +00:00
|
|
|
|
2019-01-24 04:01:02 +00:00
|
|
|
/// Attempts to parse the header at the given path, returning a map of definitions to their values.
|
|
|
|
/// Each entry in the map directly corresponds to a `#define` in the given header.
|
2020-03-08 07:17:25 +00:00
|
|
|
fn parse_header_defines(header_path: impl AsRef<Path>) -> Result<HashMap<String, String>> {
|
2020-05-04 18:51:19 +00:00
|
|
|
let header_reader = BufReader::new(File::open(header_path.as_ref())?);
|
2020-03-08 07:17:25 +00:00
|
|
|
let mut definitions = HashMap::new();
|
|
|
|
for maybe_line in header_reader.lines() {
|
2020-05-04 18:51:19 +00:00
|
|
|
let line = maybe_line?;
|
|
|
|
let mut i = line.trim().split_whitespace();
|
|
|
|
if i.next() == Some("#define") {
|
|
|
|
if let (Some(key), Some(value), None) = (i.next(), i.next(), i.next()) {
|
|
|
|
definitions.insert(key.into(), value.into());
|
|
|
|
}
|
2020-03-08 07:17:25 +00:00
|
|
|
}
|
|
|
|
}
|
2019-01-24 04:01:02 +00:00
|
|
|
Ok(definitions)
|
|
|
|
}
|
|
|
|
|
2020-08-17 19:12:12 +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()
|
|
|
|
}
|
|
|
|
|
2020-08-09 02:37:38 +00:00
|
|
|
/// Parse sysconfigdata file
|
|
|
|
///
|
2020-08-18 17:23:48 +00:00
|
|
|
/// The sysconfigdata is simply a dictionary containing all the build time variables used for the
|
|
|
|
/// python executable and library. Here it is read and added to a script to extract only what is
|
|
|
|
/// necessary. This necessitates a python interpreter for the host machine to work.
|
2020-08-08 21:25:34 +00:00
|
|
|
fn parse_sysconfigdata(config_path: impl AsRef<Path>) -> Result<HashMap<String, String>> {
|
2020-08-17 19:12:12 +00:00
|
|
|
let mut script = fs::read_to_string(config_path)?;
|
|
|
|
script += r#"
|
|
|
|
print("version_major", build_time_vars["VERSION"][0]) # 3
|
|
|
|
print("version_minor", build_time_vars["VERSION"][2]) # E.g., 8
|
2021-02-20 06:31:25 +00:00
|
|
|
KEYS = [
|
|
|
|
"WITH_THREAD",
|
|
|
|
"Py_DEBUG",
|
|
|
|
"Py_REF_DEBUG",
|
|
|
|
"Py_TRACE_REFS",
|
|
|
|
"COUNT_ALLOCS",
|
|
|
|
"Py_ENABLE_SHARED",
|
|
|
|
"LDVERSION",
|
|
|
|
"SIZEOF_VOID_P"
|
|
|
|
]
|
|
|
|
for key in KEYS:
|
|
|
|
print(key, build_time_vars.get(key, 0))
|
2020-08-17 19:12:12 +00:00
|
|
|
"#;
|
|
|
|
let output = run_python_script(&find_interpreter()?, &script)?;
|
2020-08-09 02:37:38 +00:00
|
|
|
|
2020-08-17 19:12:12 +00:00
|
|
|
Ok(parse_script_output(&output))
|
|
|
|
}
|
|
|
|
|
|
|
|
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)
|
|
|
|
}
|
|
|
|
|
2020-08-19 02:05:29 +00:00
|
|
|
/// Finds the `_sysconfigdata*.py` file in the library path.
|
2020-08-18 17:23:48 +00:00
|
|
|
///
|
2020-08-19 02:05:29 +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:
|
2020-08-18 17:23:48 +00:00
|
|
|
///
|
|
|
|
/// ```py
|
|
|
|
/// pybuilddir = 'build/lib.%s-%s' % (get_platform(), sys.version_info[:2])
|
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
/// Where get_platform returns a kebab-case formated string containing the os, the architecture and
|
|
|
|
/// 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
|
|
|
|
/// # distribution from package manager, lib_dir should include lib/
|
|
|
|
/// ${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
|
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
/// [1]: https://github.com/python/cpython/blob/3.5/Lib/sysconfig.py#L389
|
2020-08-19 02:05:29 +00:00
|
|
|
fn find_sysconfigdata(cross: &CrossCompileConfig) -> Result<PathBuf> {
|
2020-08-19 16:11:14 +00:00
|
|
|
let sysconfig_paths = search_lib_dir(&cross.lib_dir, &cross);
|
2021-03-12 04:00:01 +00:00
|
|
|
let sysconfig_name = env::var_os("_PYTHON_SYSCONFIGDATA_NAME");
|
2020-08-19 16:11:14 +00:00
|
|
|
let mut sysconfig_paths = sysconfig_paths
|
|
|
|
.iter()
|
2021-03-12 04:00:01 +00:00
|
|
|
.filter_map(|p| {
|
2021-03-12 07:50:33 +00:00
|
|
|
let canonical = fs::canonicalize(p).ok();
|
|
|
|
match &sysconfig_name {
|
|
|
|
Some(_) => canonical.filter(|p| p.file_stem() == sysconfig_name.as_deref()),
|
|
|
|
None => canonical,
|
|
|
|
}
|
2021-03-12 04:00:01 +00:00
|
|
|
})
|
2020-08-19 16:11:14 +00:00
|
|
|
.collect::<Vec<PathBuf>>();
|
|
|
|
sysconfig_paths.dedup();
|
2020-08-19 02:14:14 +00:00
|
|
|
if sysconfig_paths.is_empty() {
|
2020-08-19 02:05:29 +00:00
|
|
|
bail!(
|
|
|
|
"Could not find either libpython.so or _sysconfigdata*.py in {}",
|
|
|
|
cross.lib_dir.display()
|
|
|
|
);
|
2021-03-12 04:00:01 +00:00
|
|
|
} else if sysconfig_paths.len() > 1 {
|
|
|
|
bail!(
|
|
|
|
"Detected multiple possible python versions, please set the PYO3_PYTHON_VERSION \
|
|
|
|
variable to the wanted version on your system or set the _PYTHON_SYSCONFIGDATA_NAME \
|
|
|
|
variable to the wanted sysconfigdata file name\nsysconfigdata paths = {:?}",
|
|
|
|
sysconfig_paths
|
|
|
|
)
|
2020-08-19 02:05:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Ok(sysconfig_paths.remove(0))
|
|
|
|
}
|
|
|
|
|
|
|
|
/// 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![];
|
2020-11-12 11:09:24 +00:00
|
|
|
let version_pat = if let Some(v) = &cross.version {
|
2020-08-19 02:05:29 +00:00
|
|
|
format!("python{}", v)
|
|
|
|
} else {
|
|
|
|
"python3.".into()
|
|
|
|
};
|
2020-08-17 19:12:12 +00:00
|
|
|
for f in fs::read_dir(path).expect("Path does not exist") {
|
2020-11-12 11:09:24 +00:00
|
|
|
let sysc = match &f {
|
|
|
|
Ok(f) if starts_with(f, "_sysconfigdata") && ends_with(f, "py") => vec![f.path()],
|
|
|
|
Ok(f) if starts_with(f, "build") => search_lib_dir(f.path(), cross),
|
|
|
|
Ok(f) if starts_with(f, "lib.") => {
|
2020-08-17 19:12:12 +00:00
|
|
|
let name = f.file_name();
|
|
|
|
// check if right target os
|
|
|
|
if !name.to_string_lossy().contains(if cross.os == "android" {
|
|
|
|
"linux"
|
|
|
|
} else {
|
|
|
|
&cross.os
|
|
|
|
}) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
// Check if right arch
|
|
|
|
if !name.to_string_lossy().contains(&cross.arch) {
|
|
|
|
continue;
|
|
|
|
}
|
2020-08-19 02:05:29 +00:00
|
|
|
search_lib_dir(f.path(), cross)
|
2020-08-08 21:25:34 +00:00
|
|
|
}
|
2020-11-12 11:09:24 +00:00
|
|
|
Ok(f) if starts_with(f, &version_pat) => search_lib_dir(f.path(), cross),
|
2020-08-17 19:12:12 +00:00
|
|
|
_ => continue,
|
|
|
|
};
|
2020-08-19 02:05:29 +00:00
|
|
|
sysconfig_paths.extend(sysc);
|
2020-08-08 21:25:34 +00:00
|
|
|
}
|
2020-08-19 02:05:29 +00:00
|
|
|
sysconfig_paths
|
2020-08-08 21:25:34 +00:00
|
|
|
}
|
|
|
|
|
2020-08-09 02:37:38 +00:00
|
|
|
/// Find cross compilation information from sysconfigdata file
|
|
|
|
///
|
|
|
|
/// first find sysconfigdata file which follows the pattern [`_sysconfigdata_{abi}_{platform}_{multiarch}`][1]
|
2020-08-17 19:12:12 +00:00
|
|
|
/// on python 3.6 or greater. On python 3.5 it is simply `_sysconfigdata.py`.
|
2020-08-09 02:37:38 +00:00
|
|
|
///
|
|
|
|
/// [1]: https://github.com/python/cpython/blob/3.8/Lib/sysconfig.py#L348
|
2020-08-08 21:25:34 +00:00
|
|
|
fn load_cross_compile_from_sysconfigdata(
|
2020-12-31 00:55:03 +00:00
|
|
|
cross_compile_config: CrossCompileConfig,
|
2021-01-01 07:34:36 +00:00
|
|
|
) -> Result<(InterpreterConfig, BuildFlags)> {
|
2020-12-31 00:55:03 +00:00
|
|
|
let sysconfig_path = find_sysconfigdata(&cross_compile_config)?;
|
2020-12-30 23:45:03 +00:00
|
|
|
let sysconfig_data = parse_sysconfigdata(sysconfig_path)?;
|
2020-08-08 21:25:34 +00:00
|
|
|
|
2020-12-30 23:45:03 +00:00
|
|
|
let major = sysconfig_data.get_numeric("version_major")?;
|
|
|
|
let minor = sysconfig_data.get_numeric("version_minor")?;
|
|
|
|
let ld_version = match sysconfig_data.get("LDVERSION") {
|
2020-08-08 21:25:34 +00:00
|
|
|
Some(s) => s.clone(),
|
|
|
|
None => format!("{}.{}", major, minor),
|
|
|
|
};
|
2020-12-30 23:45:03 +00:00
|
|
|
let calcsize_pointer = sysconfig_data.get_numeric("SIZEOF_VOID_P").ok();
|
2020-08-17 19:12:12 +00:00
|
|
|
|
2021-03-05 06:27:36 +00:00
|
|
|
let python_version = PythonVersion { major, minor };
|
2020-08-08 21:25:34 +00:00
|
|
|
|
|
|
|
let interpreter_config = InterpreterConfig {
|
|
|
|
version: python_version,
|
2020-12-31 00:55:03 +00:00
|
|
|
libdir: cross_compile_config.lib_dir.to_str().map(String::from),
|
2020-12-30 23:45:03 +00:00
|
|
|
shared: sysconfig_data.get_bool("Py_ENABLE_SHARED")?,
|
2020-08-08 21:25:34 +00:00
|
|
|
ld_version,
|
|
|
|
base_prefix: "".to_string(),
|
|
|
|
executable: PathBuf::new(),
|
2020-08-17 19:12:12 +00:00
|
|
|
calcsize_pointer,
|
2021-03-05 06:27:36 +00:00
|
|
|
implementation: PythonInterpreterKind::CPython,
|
2020-08-08 21:25:34 +00:00
|
|
|
};
|
|
|
|
|
2021-01-01 07:34:36 +00:00
|
|
|
let build_flags = BuildFlags::from_config_map(&sysconfig_data);
|
2020-12-30 23:45:03 +00:00
|
|
|
|
|
|
|
Ok((interpreter_config, build_flags))
|
2020-08-08 21:25:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn load_cross_compile_from_headers(
|
2020-12-31 00:55:03 +00:00
|
|
|
cross_compile_config: CrossCompileConfig,
|
2021-01-01 07:34:36 +00:00
|
|
|
) -> Result<(InterpreterConfig, BuildFlags)> {
|
2020-12-31 00:55:03 +00:00
|
|
|
let python_include_dir = cross_compile_config.include_dir.unwrap();
|
2020-08-08 21:41:16 +00:00
|
|
|
let python_include_dir = Path::new(&python_include_dir);
|
2019-01-24 04:01:02 +00:00
|
|
|
let patchlevel_defines = parse_header_defines(python_include_dir.join("patchlevel.h"))?;
|
|
|
|
|
2020-08-17 22:14:05 +00:00
|
|
|
let major = patchlevel_defines.get_numeric("PY_MAJOR_VERSION")?;
|
|
|
|
let minor = patchlevel_defines.get_numeric("PY_MINOR_VERSION")?;
|
2019-01-24 04:01:02 +00:00
|
|
|
|
2021-03-05 06:27:36 +00:00
|
|
|
let python_version = PythonVersion { major, minor };
|
2019-01-24 04:01:02 +00:00
|
|
|
|
2020-12-30 23:45:03 +00:00
|
|
|
let config_data = parse_header_defines(python_include_dir.join("pyconfig.h"))?;
|
2019-05-16 21:24:55 +00:00
|
|
|
|
2020-03-08 07:17:25 +00:00
|
|
|
let interpreter_config = InterpreterConfig {
|
2019-05-16 21:24:55 +00:00
|
|
|
version: python_version,
|
2020-12-31 00:55:03 +00:00
|
|
|
libdir: cross_compile_config.lib_dir.to_str().map(String::from),
|
2021-01-04 14:24:39 +00:00
|
|
|
shared: config_data.get_bool("Py_ENABLE_SHARED").unwrap_or(false),
|
2020-08-08 21:25:34 +00:00
|
|
|
ld_version: format!("{}.{}", major, minor),
|
2019-05-16 21:24:55 +00:00
|
|
|
base_prefix: "".to_string(),
|
2020-05-04 18:51:19 +00:00
|
|
|
executable: PathBuf::new(),
|
2020-03-23 17:01:59 +00:00
|
|
|
calcsize_pointer: None,
|
2021-03-05 06:27:36 +00:00
|
|
|
implementation: PythonInterpreterKind::CPython,
|
2019-05-16 21:24:55 +00:00
|
|
|
};
|
2019-01-24 04:01:02 +00:00
|
|
|
|
2021-01-01 07:34:36 +00:00
|
|
|
let build_flags = BuildFlags::from_config_map(&config_data);
|
2020-12-30 23:45:03 +00:00
|
|
|
|
|
|
|
Ok((interpreter_config, build_flags))
|
2019-01-24 04:01:02 +00:00
|
|
|
}
|
|
|
|
|
2020-12-31 00:55:03 +00:00
|
|
|
fn windows_hardcoded_cross_compile(
|
|
|
|
cross_compile_config: CrossCompileConfig,
|
2021-01-01 07:34:36 +00:00
|
|
|
) -> Result<(InterpreterConfig, BuildFlags)> {
|
2020-12-31 00:55:03 +00:00
|
|
|
let (major, minor) = if let Some(version) = cross_compile_config.version {
|
|
|
|
let mut parts = version.split('.');
|
|
|
|
match (
|
|
|
|
parts.next().and_then(|major| major.parse().ok()),
|
|
|
|
parts.next().and_then(|minor| minor.parse().ok()),
|
|
|
|
parts.next(),
|
|
|
|
) {
|
|
|
|
(Some(major), Some(minor), None) => (major, minor),
|
|
|
|
_ => bail!(
|
|
|
|
"Expected major.minor version (e.g. 3.9) for PYO3_CROSS_VERSION, got `{}`",
|
|
|
|
version
|
|
|
|
),
|
|
|
|
}
|
|
|
|
} else if let Some(minor_version) = get_abi3_minor_version() {
|
|
|
|
(3, minor_version)
|
|
|
|
} else {
|
|
|
|
bail!("One of PYO3_CROSS_INCLUDE_DIR, PYO3_CROSS_PYTHON_VERSION, or an abi3-py3* feature must be specified when cross-compiling for Windows.")
|
|
|
|
};
|
|
|
|
|
2021-03-05 06:27:36 +00:00
|
|
|
let python_version = PythonVersion { major, minor };
|
2020-12-31 00:55:03 +00:00
|
|
|
|
|
|
|
let interpreter_config = InterpreterConfig {
|
|
|
|
version: python_version,
|
|
|
|
libdir: cross_compile_config.lib_dir.to_str().map(String::from),
|
|
|
|
shared: true,
|
|
|
|
ld_version: format!("{}.{}", major, minor),
|
|
|
|
base_prefix: "".to_string(),
|
|
|
|
executable: PathBuf::new(),
|
|
|
|
calcsize_pointer: None,
|
2021-03-05 06:27:36 +00:00
|
|
|
implementation: PythonInterpreterKind::CPython,
|
2020-12-31 00:55:03 +00:00
|
|
|
};
|
|
|
|
|
2021-01-01 07:34:36 +00:00
|
|
|
Ok((interpreter_config, BuildFlags::windows_hardcoded()))
|
2020-12-31 00:55:03 +00:00
|
|
|
}
|
|
|
|
|
2020-08-08 21:25:34 +00:00
|
|
|
fn load_cross_compile_info(
|
2020-12-31 00:55:03 +00:00
|
|
|
cross_compile_config: CrossCompileConfig,
|
2021-01-01 07:34:36 +00:00
|
|
|
) -> Result<(InterpreterConfig, BuildFlags)> {
|
2020-08-09 02:37:38 +00:00
|
|
|
let target_family = env::var("CARGO_CFG_TARGET_FAMILY")?;
|
|
|
|
// Because compiling for windows on linux still includes the unix target family
|
2020-08-17 19:12:12 +00:00
|
|
|
if target_family == "unix" {
|
2020-08-09 02:37:38 +00:00
|
|
|
// Configure for unix platforms using the sysconfigdata file
|
2020-12-31 00:55:03 +00:00
|
|
|
load_cross_compile_from_sysconfigdata(cross_compile_config)
|
|
|
|
} else if cross_compile_config.include_dir.is_some() {
|
2020-08-09 02:37:38 +00:00
|
|
|
// Must configure by headers on windows platform
|
2020-12-31 00:55:03 +00:00
|
|
|
load_cross_compile_from_headers(cross_compile_config)
|
|
|
|
} else {
|
|
|
|
windows_hardcoded_cross_compile(cross_compile_config)
|
2020-08-08 21:25:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-13 05:05:00 +00:00
|
|
|
/// Run a python script using the specified interpreter binary.
|
2020-05-04 18:51:19 +00:00
|
|
|
fn run_python_script(interpreter: &Path, script: &str) -> Result<String> {
|
2018-05-13 13:55:13 +00:00
|
|
|
let out = Command::new(interpreter)
|
2021-01-26 21:31:25 +00:00
|
|
|
.env("PYTHONIOENCODING", "utf-8")
|
|
|
|
.stdin(Stdio::piped())
|
|
|
|
.stdout(Stdio::piped())
|
2018-08-04 17:55:15 +00:00
|
|
|
.stderr(Stdio::inherit())
|
2021-01-26 21:31:25 +00:00
|
|
|
.spawn()
|
|
|
|
.and_then(|mut child| {
|
|
|
|
use std::io::Write;
|
|
|
|
child
|
|
|
|
.stdin
|
|
|
|
.as_mut()
|
|
|
|
.expect("piped stdin")
|
|
|
|
.write_all(script.as_bytes())?;
|
|
|
|
child.wait_with_output()
|
|
|
|
});
|
2019-03-26 11:47:35 +00:00
|
|
|
|
2020-03-08 07:17:25 +00:00
|
|
|
match out {
|
2019-03-26 11:47:35 +00:00
|
|
|
Err(err) => {
|
|
|
|
if err.kind() == io::ErrorKind::NotFound {
|
2020-03-08 07:17:25 +00:00
|
|
|
bail!(
|
2019-03-26 11:47:35 +00:00
|
|
|
"Could not find any interpreter at {}, \
|
2020-03-08 07:17:25 +00:00
|
|
|
are you sure you have Python installed on your PATH?",
|
2020-05-04 18:51:19 +00:00
|
|
|
interpreter.display()
|
2020-03-08 07:17:25 +00:00
|
|
|
);
|
2019-03-26 11:47:35 +00:00
|
|
|
} else {
|
2020-03-08 07:17:25 +00:00
|
|
|
bail!(
|
|
|
|
"Failed to run the Python interpreter at {}: {}",
|
2020-05-04 18:51:19 +00:00
|
|
|
interpreter.display(),
|
2020-03-08 07:17:25 +00:00
|
|
|
err
|
|
|
|
);
|
2019-03-26 11:47:35 +00:00
|
|
|
}
|
|
|
|
}
|
2021-01-26 21:31:25 +00:00
|
|
|
Ok(ok) if !ok.status.success() => bail!("Python script failed"),
|
2020-03-08 07:17:25 +00:00
|
|
|
Ok(ok) => Ok(String::from_utf8(ok.stdout)?),
|
2017-05-13 05:05:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-30 16:27:18 +00:00
|
|
|
fn get_rustc_link_lib(config: &InterpreterConfig) -> String {
|
|
|
|
let link_name = if env::var("CARGO_CFG_TARGET_OS").unwrap().as_str() == "windows" {
|
2021-02-12 09:16:30 +00:00
|
|
|
if env::var("CARGO_CFG_TARGET_ENV").unwrap().as_str() == "gnu" {
|
|
|
|
// https://packages.msys2.org/base/mingw-w64-python
|
2021-03-05 06:27:36 +00:00
|
|
|
// TODO: ABI3?
|
2020-12-31 00:55:03 +00:00
|
|
|
format!(
|
2021-02-12 09:16:30 +00:00
|
|
|
"pythonXY:python{}.{}",
|
2020-12-31 00:55:03 +00:00
|
|
|
config.version.major, config.version.minor
|
|
|
|
)
|
2021-02-12 09:16:30 +00:00
|
|
|
} else {
|
|
|
|
// 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.
|
2021-03-05 06:27:36 +00:00
|
|
|
if is_abi3() {
|
2021-02-12 09:16:30 +00:00
|
|
|
"pythonXY:python3".to_owned()
|
|
|
|
} else {
|
|
|
|
format!(
|
|
|
|
"pythonXY:python{}{}",
|
|
|
|
config.version.major, config.version.minor
|
|
|
|
)
|
|
|
|
}
|
2020-09-23 12:31:24 +00:00
|
|
|
}
|
2019-04-23 11:18:42 +00:00
|
|
|
} else {
|
2021-03-05 06:27:36 +00:00
|
|
|
match config.implementation {
|
2020-12-30 16:27:18 +00:00
|
|
|
PythonInterpreterKind::CPython => format!("python{}", config.ld_version),
|
|
|
|
PythonInterpreterKind::PyPy => format!("pypy{}-c", config.version.major),
|
2019-04-23 11:18:42 +00:00
|
|
|
}
|
2020-12-30 16:27:18 +00:00
|
|
|
};
|
2017-05-13 05:05:00 +00:00
|
|
|
|
2020-12-30 16:27:18 +00:00
|
|
|
format!(
|
|
|
|
"cargo:rustc-link-lib={link_model}{link_name}",
|
|
|
|
link_model = if config.shared { "" } else { "static=" },
|
|
|
|
link_name = link_name
|
|
|
|
)
|
2019-04-23 11:18:42 +00:00
|
|
|
}
|
|
|
|
|
2020-08-09 09:07:14 +00:00
|
|
|
fn find_interpreter() -> Result<PathBuf> {
|
|
|
|
if let Some(exe) = env::var_os("PYO3_PYTHON") {
|
|
|
|
Ok(exe.into())
|
|
|
|
} else if let Some(exe) = env::var_os("PYTHON_SYS_EXECUTABLE") {
|
|
|
|
// Backwards-compatible name for PYO3_PYTHON; this may be removed at some point in the future.
|
|
|
|
Ok(exe.into())
|
|
|
|
} else {
|
|
|
|
["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)
|
2020-08-08 17:03:16 +00:00
|
|
|
.ok_or_else(|| "Python 3.x interpreter not found".into())
|
2020-08-09 09:07:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-13 05:05:00 +00:00
|
|
|
/// Locate a suitable python interpreter and extract config from it.
|
2018-05-26 10:04:58 +00:00
|
|
|
///
|
|
|
|
/// The following locations are checked in the order listed:
|
|
|
|
///
|
2020-07-13 21:38:45 +00:00
|
|
|
/// 1. If `PYO3_PYTHON` is set, this intepreter is used and an error is raised if the
|
2018-05-26 10:04:58 +00:00
|
|
|
/// version doesn't match.
|
|
|
|
/// 2. `python`
|
|
|
|
/// 3. `python{major version}`
|
|
|
|
/// 4. `python{major version}.{minor version}`
|
|
|
|
///
|
|
|
|
/// If none of the above works, an error is returned
|
2021-01-01 07:34:36 +00:00
|
|
|
fn find_interpreter_and_get_config() -> Result<(InterpreterConfig, BuildFlags)> {
|
2020-08-09 09:07:14 +00:00
|
|
|
let python_interpreter = find_interpreter()?;
|
2020-03-08 07:17:25 +00:00
|
|
|
let interpreter_config = get_config_from_interpreter(&python_interpreter)?;
|
2019-05-16 21:24:55 +00:00
|
|
|
if interpreter_config.version.major == 3 {
|
2021-01-01 07:34:36 +00:00
|
|
|
return Ok((
|
|
|
|
interpreter_config,
|
|
|
|
BuildFlags::from_interpreter(&python_interpreter)?,
|
|
|
|
));
|
2017-06-11 23:35:24 +00:00
|
|
|
}
|
|
|
|
|
2020-03-08 07:17:25 +00:00
|
|
|
Err("No Python interpreter found".into())
|
2017-05-13 05:05:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Extract compilation vars from the specified interpreter.
|
2020-05-04 18:51:19 +00:00
|
|
|
fn get_config_from_interpreter(interpreter: &Path) -> Result<InterpreterConfig> {
|
2018-08-04 17:55:15 +00:00
|
|
|
let script = r#"
|
2021-02-20 06:31:25 +00:00
|
|
|
import os.path
|
2020-03-23 17:01:59 +00:00
|
|
|
import platform
|
|
|
|
import struct
|
2018-08-04 17:55:15 +00:00
|
|
|
import sys
|
2021-02-20 06:31:25 +00:00
|
|
|
from sysconfig import get_config_var
|
2019-04-23 11:18:42 +00:00
|
|
|
|
|
|
|
PYPY = platform.python_implementation() == "PyPy"
|
2018-08-04 17:55:15 +00:00
|
|
|
|
2020-09-11 15:57:49 +00:00
|
|
|
# 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).
|
2021-02-20 06:31:25 +00:00
|
|
|
ANACONDA = os.path.exists(os.path.join(sys.base_prefix, "conda-meta"))
|
2019-05-16 21:24:55 +00:00
|
|
|
|
2021-02-20 06:31:25 +00:00
|
|
|
libdir = get_config_var("LIBDIR")
|
2020-05-04 18:51:19 +00:00
|
|
|
|
|
|
|
print("version_major", sys.version_info[0])
|
|
|
|
print("version_minor", sys.version_info[1])
|
|
|
|
print("implementation", platform.python_implementation())
|
|
|
|
if libdir is not None:
|
|
|
|
print("libdir", libdir)
|
2021-02-20 06:31:25 +00:00
|
|
|
print("ld_version", get_config_var("LDVERSION") or get_config_var("py_version_short"))
|
2020-11-19 18:36:07 +00:00
|
|
|
print("base_prefix", sys.base_prefix)
|
2021-02-20 06:31:25 +00:00
|
|
|
print("framework", bool(get_config_var("PYTHONFRAMEWORK")))
|
|
|
|
print("shared", PYPY or ANACONDA or bool(get_config_var("Py_ENABLE_SHARED")))
|
2020-05-04 18:51:19 +00:00
|
|
|
print("executable", sys.executable)
|
|
|
|
print("calcsize_pointer", struct.calcsize("P"))
|
2018-08-04 17:55:15 +00:00
|
|
|
"#;
|
2020-05-04 18:51:19 +00:00
|
|
|
let output = run_python_script(interpreter, script)?;
|
2020-08-17 19:12:12 +00:00
|
|
|
let map: HashMap<String, String> = parse_script_output(&output);
|
2020-12-30 16:27:18 +00:00
|
|
|
let shared = match (
|
|
|
|
env::var("CARGO_CFG_TARGET_OS").unwrap().as_str(),
|
|
|
|
map["framework"].as_str(),
|
|
|
|
map["shared"].as_str(),
|
|
|
|
) {
|
|
|
|
(_, _, "True") // Py_ENABLE_SHARED is set
|
|
|
|
| ("windows", _, _) // Windows always uses shared linking
|
|
|
|
| ("macos", "True", _) // MacOS framework package uses shared linking
|
|
|
|
=> true,
|
|
|
|
(_, _, "False") => false, // Any other platform, Py_ENABLE_SHARED not set
|
|
|
|
_ => bail!("Unrecognised link model combination")
|
|
|
|
};
|
|
|
|
|
2020-05-04 18:51:19 +00:00
|
|
|
Ok(InterpreterConfig {
|
|
|
|
version: PythonVersion {
|
|
|
|
major: map["version_major"].parse()?,
|
2020-12-30 16:27:18 +00:00
|
|
|
minor: map["version_minor"].parse()?,
|
2020-05-04 18:51:19 +00:00
|
|
|
},
|
2021-03-05 06:27:36 +00:00
|
|
|
implementation: map["implementation"].parse()?,
|
2020-05-04 18:51:19 +00:00
|
|
|
libdir: map.get("libdir").cloned(),
|
2020-12-30 16:27:18 +00:00
|
|
|
shared,
|
2020-05-04 18:51:19 +00:00
|
|
|
ld_version: map["ld_version"].clone(),
|
|
|
|
base_prefix: map["base_prefix"].clone(),
|
|
|
|
executable: map["executable"].clone().into(),
|
|
|
|
calcsize_pointer: Some(map["calcsize_pointer"].parse()?),
|
|
|
|
})
|
2017-05-13 05:05:00 +00:00
|
|
|
}
|
|
|
|
|
2020-12-30 23:45:03 +00:00
|
|
|
fn configure(interpreter_config: &InterpreterConfig) -> Result<()> {
|
|
|
|
if interpreter_config.version.major == 2 {
|
|
|
|
// fail PYO3_PYTHON=python2 cargo ...
|
|
|
|
bail!("Python 2 is not supported");
|
|
|
|
}
|
|
|
|
|
2020-12-30 16:27:18 +00:00
|
|
|
if interpreter_config.version.minor < PY3_MIN_MINOR {
|
|
|
|
bail!(
|
|
|
|
"Python 3 required version is 3.{}, current version is 3.{}",
|
|
|
|
PY3_MIN_MINOR,
|
|
|
|
interpreter_config.version.minor
|
|
|
|
);
|
2019-04-23 11:18:42 +00:00
|
|
|
}
|
2017-05-13 05:05:00 +00:00
|
|
|
|
2020-03-23 17:01:59 +00:00
|
|
|
check_target_architecture(interpreter_config)?;
|
2020-08-18 17:23:48 +00:00
|
|
|
let target_os = env::var_os("CARGO_CFG_TARGET_OS").unwrap();
|
2020-02-29 12:22:37 +00:00
|
|
|
|
2017-05-13 05:05:00 +00:00
|
|
|
let is_extension_module = env::var_os("CARGO_FEATURE_EXTENSION_MODULE").is_some();
|
2020-08-18 17:23:48 +00:00
|
|
|
if !is_extension_module || target_os == "windows" || target_os == "android" {
|
2020-12-30 16:27:18 +00:00
|
|
|
println!("{}", get_rustc_link_lib(&interpreter_config));
|
2019-05-16 21:24:55 +00:00
|
|
|
if let Some(libdir) = &interpreter_config.libdir {
|
|
|
|
println!("cargo:rustc-link-search=native={}", libdir);
|
2020-05-12 20:24:51 +00:00
|
|
|
} else if target_os == "windows" {
|
2019-05-16 21:24:55 +00:00
|
|
|
println!(
|
|
|
|
"cargo:rustc-link-search=native={}\\libs",
|
|
|
|
interpreter_config.base_prefix
|
|
|
|
);
|
2017-05-13 05:05:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-28 16:02:57 +00:00
|
|
|
if interpreter_config.shared {
|
|
|
|
println!("cargo:rustc-cfg=Py_SHARED");
|
|
|
|
}
|
|
|
|
|
2021-03-05 06:27:36 +00:00
|
|
|
let is_abi3 = is_abi3();
|
|
|
|
|
|
|
|
if interpreter_config.is_pypy() {
|
2019-04-23 11:18:42 +00:00
|
|
|
println!("cargo:rustc-cfg=PyPy");
|
2021-03-05 06:27:36 +00:00
|
|
|
if is_abi3 {
|
|
|
|
warn!(
|
2021-03-06 09:03:17 +00:00
|
|
|
"PyPy does not yet support abi3 so the resulting wheel will be version-specific. \
|
2021-03-05 06:27:36 +00:00
|
|
|
See https://foss.heptapod.net/pypy/pypy/-/issues/3397 for more information."
|
|
|
|
)
|
|
|
|
}
|
2019-04-23 11:18:42 +00:00
|
|
|
};
|
|
|
|
|
2021-03-05 06:27:36 +00:00
|
|
|
let minor = if is_abi3 {
|
2019-05-16 21:24:55 +00:00
|
|
|
println!("cargo:rustc-cfg=Py_LIMITED_API");
|
2020-10-31 07:35:14 +00:00
|
|
|
// Check any `abi3-py3*` feature is set. If not, use the interpreter version.
|
2020-12-31 00:55:03 +00:00
|
|
|
match get_abi3_minor_version() {
|
2020-12-30 16:27:18 +00:00
|
|
|
Some(minor) if minor > interpreter_config.version.minor => bail!(
|
|
|
|
"You cannot set a mininimum Python version 3.{} higher than the interpreter version 3.{}",
|
|
|
|
minor,
|
|
|
|
interpreter_config.version.minor
|
2020-10-31 07:35:14 +00:00
|
|
|
),
|
2020-12-30 16:27:18 +00:00
|
|
|
Some(minor) => minor,
|
|
|
|
None => interpreter_config.version.minor
|
2020-10-31 07:35:14 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
interpreter_config.version.minor
|
|
|
|
};
|
2019-05-16 21:24:55 +00:00
|
|
|
|
2020-12-30 16:27:18 +00:00
|
|
|
for i in PY3_MIN_MINOR..=minor {
|
|
|
|
println!("cargo:rustc-cfg=Py_3_{}", i);
|
2017-06-11 23:35:24 +00:00
|
|
|
}
|
2019-05-16 21:24:55 +00:00
|
|
|
|
2020-12-30 23:45:03 +00:00
|
|
|
Ok(())
|
2017-06-11 23:35:24 +00:00
|
|
|
}
|
2017-05-13 05:05:00 +00:00
|
|
|
|
2020-03-23 17:01:59 +00:00
|
|
|
fn check_target_architecture(interpreter_config: &InterpreterConfig) -> Result<()> {
|
2020-02-29 12:22:37 +00:00
|
|
|
// Try to check whether the target architecture matches the python library
|
2020-03-23 17:01:59 +00:00
|
|
|
let rust_target = match env::var("CARGO_CFG_TARGET_POINTER_WIDTH")?.as_str() {
|
|
|
|
"64" => "64-bit",
|
|
|
|
"32" => "32-bit",
|
|
|
|
x => bail!("unexpected Rust target pointer width: {}", x),
|
2020-02-29 12:22:37 +00:00
|
|
|
};
|
|
|
|
|
2020-03-23 17:01:59 +00:00
|
|
|
// 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 python_target = match interpreter_config.calcsize_pointer {
|
|
|
|
Some(8) => "64-bit",
|
|
|
|
Some(4) => "32-bit",
|
|
|
|
None => {
|
|
|
|
// Unset, e.g. because we're cross-compiling. Don't check anything
|
|
|
|
// in this case.
|
|
|
|
return Ok(());
|
|
|
|
}
|
|
|
|
Some(n) => bail!("unexpected Python calcsize_pointer value: {}", n),
|
2020-02-29 12:22:37 +00:00
|
|
|
};
|
|
|
|
|
2020-03-23 17:01:59 +00:00
|
|
|
if rust_target != python_target {
|
|
|
|
bail!(
|
2020-02-29 12:22:37 +00:00
|
|
|
"Your Rust target architecture ({}) does not match your python interpreter ({})",
|
2020-03-23 17:01:59 +00:00
|
|
|
rust_target,
|
|
|
|
python_target
|
|
|
|
);
|
2020-02-29 12:22:37 +00:00
|
|
|
}
|
2020-03-23 17:01:59 +00:00
|
|
|
|
|
|
|
Ok(())
|
2020-02-29 12:22:37 +00:00
|
|
|
}
|
|
|
|
|
2020-12-31 00:55:03 +00:00
|
|
|
fn get_abi3_minor_version() -> Option<u8> {
|
|
|
|
(PY3_MIN_MINOR..=ABI3_MAX_MINOR)
|
|
|
|
.find(|i| env::var_os(format!("CARGO_FEATURE_ABI3_PY3{}", i)).is_some())
|
|
|
|
}
|
|
|
|
|
2020-12-01 14:40:49 +00:00
|
|
|
fn abi3_without_interpreter() -> Result<()> {
|
|
|
|
println!("cargo:rustc-cfg=Py_LIMITED_API");
|
|
|
|
let mut flags = "FLAG_WITH_THREAD=1".to_string();
|
2020-12-31 00:55:03 +00:00
|
|
|
let abi_version = get_abi3_minor_version().unwrap_or(ABI3_MAX_MINOR);
|
|
|
|
for minor in PY3_MIN_MINOR..=abi_version {
|
2020-12-01 14:40:49 +00:00
|
|
|
println!("cargo:rustc-cfg=Py_3_{}", minor);
|
|
|
|
flags += &format!(",CFG_Py_3_{}", minor);
|
|
|
|
}
|
|
|
|
println!("cargo:rustc-cfg=py_sys_config=\"WITH_THREAD\"");
|
|
|
|
println!("cargo:python_flags={}", flags);
|
2021-01-08 19:41:19 +00:00
|
|
|
|
|
|
|
// Unfortunately, on windows we can't build without at least providing
|
|
|
|
// python.lib to the linker. While maturin tells the linker the location
|
|
|
|
// of python.lib, we need to do the renaming here, otherwise cargo
|
|
|
|
// complains that the crate using pyo3 does not contains a `#[link(...)]`
|
|
|
|
// attribute with pythonXY.
|
|
|
|
if env::var("CARGO_CFG_TARGET_FAMILY")? == "windows" {
|
|
|
|
println!("cargo:rustc-link-lib=pythonXY:python3");
|
|
|
|
}
|
|
|
|
|
2020-12-01 14:40:49 +00:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2020-03-08 07:17:25 +00:00
|
|
|
fn main() -> Result<()> {
|
2021-01-08 19:41:19 +00:00
|
|
|
// If PYO3_NO_PYTHON is set with abi3, we can build PyO3 without calling Python.
|
2020-12-06 07:08:18 +00:00
|
|
|
// We only check for the abi3-py3{ABI3_MAX_MINOR} because lower versions depend on it.
|
|
|
|
if env::var_os("PYO3_NO_PYTHON").is_some()
|
2020-12-01 14:40:49 +00:00
|
|
|
&& env::var_os(format!("CARGO_FEATURE_ABI3_PY3{}", ABI3_MAX_MINOR)).is_some()
|
|
|
|
{
|
|
|
|
return abi3_without_interpreter();
|
|
|
|
}
|
2019-01-24 04:01:02 +00:00
|
|
|
// 1. Setup cfg variables so we can do conditional compilation in this library based on the
|
|
|
|
// python interpeter's compilation flags. This is necessary for e.g. matching the right unicode
|
|
|
|
// and threading interfaces. First check if we're cross compiling, if so, we cannot run the
|
|
|
|
// target Python interpreter and have to parse pyconfig.h instead. If we're not cross
|
|
|
|
// compiling, locate the python interpreter based on the PATH, which should work smoothly with
|
|
|
|
// an activated virtualenv, and load from there.
|
2017-05-13 05:05:00 +00:00
|
|
|
//
|
2018-05-13 13:55:13 +00:00
|
|
|
// If you have troubles with your shell accepting '.' in a var name,
|
|
|
|
// try using 'env' (sorry but this isn't our fault - it just has to
|
2017-05-13 05:05:00 +00:00
|
|
|
// match the pkg-config package name, which is going to have a . in it).
|
2020-08-08 21:25:34 +00:00
|
|
|
//
|
|
|
|
// Detecting if cross-compiling by checking if the target triple is different from the host
|
|
|
|
// rustc's triple.
|
2020-12-30 23:45:03 +00:00
|
|
|
let (interpreter_config, mut build_flags) = if let Some(paths) = cross_compiling()? {
|
2020-08-09 02:37:38 +00:00
|
|
|
load_cross_compile_info(paths)?
|
2019-01-24 04:01:02 +00:00
|
|
|
} else {
|
2019-03-26 11:47:35 +00:00
|
|
|
find_interpreter_and_get_config()?
|
|
|
|
};
|
2019-01-24 04:01:02 +00:00
|
|
|
|
2021-01-01 07:34:36 +00:00
|
|
|
build_flags.fixup(&interpreter_config);
|
2020-12-30 23:45:03 +00:00
|
|
|
configure(&interpreter_config)?;
|
2019-04-23 11:18:42 +00:00
|
|
|
|
2021-01-01 07:34:36 +00:00
|
|
|
for flag in &build_flags.0 {
|
2020-12-30 23:45:03 +00:00
|
|
|
println!("cargo:rustc-cfg={}=\"{}\"", CFG_KEY, flag)
|
2018-02-21 18:29:14 +00:00
|
|
|
}
|
|
|
|
|
2018-08-11 15:35:03 +00:00
|
|
|
if env::var_os("TARGET") == Some("x86_64-apple-darwin".into()) {
|
|
|
|
// TODO: Find out how we can set -undefined dynamic_lookup here (if this is possible)
|
|
|
|
}
|
|
|
|
|
2020-10-12 14:02:59 +00:00
|
|
|
for var in ["LIB", "LD_LIBRARY_PATH", "PYO3_PYTHON"].iter() {
|
2018-05-26 10:04:58 +00:00
|
|
|
println!("cargo:rerun-if-env-changed={}", var);
|
|
|
|
}
|
2019-03-26 11:47:35 +00:00
|
|
|
|
2020-10-12 14:02:59 +00:00
|
|
|
if env::var_os("PYO3_PYTHON").is_none() {
|
|
|
|
// When PYO3_PYTHON is not used, PYTHON_SYS_EXECUTABLE has the highest priority.
|
|
|
|
// Let's watch it.
|
|
|
|
println!("cargo:rerun-if-env-changed=PYTHON_SYS_EXECUTABLE");
|
|
|
|
if env::var_os("PYTHON_SYS_EXECUTABLE").is_none() {
|
|
|
|
// When PYTHON_SYS_EXECUTABLE is also not used, then we use PATH.
|
|
|
|
// Let's watch this, too.
|
|
|
|
println!("cargo:rerun-if-env-changed=PATH");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-28 16:02:57 +00:00
|
|
|
// TODO: this is a hack to workaround compile_error! warnings about auto-initialize on PyPy
|
|
|
|
// Once cargo's `resolver = "2"` is stable (~ MSRV Rust 1.52), remove this.
|
|
|
|
if env::var_os("PYO3_CI").is_some() {
|
|
|
|
println!("cargo:rustc-cfg=__pyo3_ci");
|
|
|
|
}
|
|
|
|
|
2019-03-26 11:47:35 +00:00
|
|
|
Ok(())
|
2015-05-17 12:14:47 +00:00
|
|
|
}
|