Function python3_dll_a::generate_implib_for_target

source ยท
pub fn generate_implib_for_target(
    out_dir: &Path,
    arch: &str,
    env: &str,
) -> Result<()>
Expand description

Generates python3.dll import library directly from the embedded Python Stable ABI definitions data for the specified compile target.

The import library file named python3.dll.a or python3.lib is created in directory out_dir.

The compile target architecture name (as in CARGO_CFG_TARGET_ARCH) is passed in arch.

The compile target environment ABI name (as in CARGO_CFG_TARGET_ENV) is passed in env.