Build Packages from Source

Overview

The following tutorials are targeting the currently known most simple and clean way of building any Python packages, even if those include platform specific extension (mostly C/C++) code.

These steps assume clean (Win10) system.

Third party dependencies should be solved case by case and as soon as those are solved, these can be the final steps to create release packages.

1. Setting the evironment

Common requirement

  • Install Visual Studio 2019

  • Install ARM64 build tools

1.2. Build machine: x64

Background: https://linaro.atlassian.net/wiki/spaces/WOAR/pages/28593914166/setuptools-distutils#4.-WoA-(win-arm64)-support

1. Install latest (matching with the arm64win Python version in next step) win-x64 Python release to x64 machine from

2. Get latest (same version as x64 above) arm64win Python from http://nuget.org

 

  • 3.10 release:

  • rename it to .zip

  • unzip

3. Create and activate virtual environment by the x64 Python

C:\Users\<user>\AppData\Local\Programs\Python\Python310-32\python.exe --version Python 3.10.0rc1 C:\Users\<user>\AppData\Local\Programs\Python\Python310-32\python.exe -m venv <venv dir> <venv dir>\Scripts\activate.bat

4. Copy arm64win Python libs to x64 venv

  • copy

    • from

      <pythonarm64 unzipped dir>\libs
    • to

      <venv dir>\libs

5.Make sure latest distutils is used from setuptools (not older than setuptools-57.4.0)

  • Update setuptools within venv

  • set environment variableto use distutils from this module and not the global Python’s internal one

6. Set environment variables to mimic cross-compilation

7. Goto

1.2. Build machine: WoA = win-arm64

Background:

  1. Get release version of arm64python

    • Current latest prerelease build:

    • Rename it to zip

    • Unzip and use python.exe from that path

  2. Create and activate virtual environment

  3. Install pre-release arm64win packages

    • pip

      • note: the 2nd force-reinstall is required to generate the arm64win pip executables with the updated distlib of the 1st installation

    • setuptools

  4. Goto

2. Build the package

2.1. Test the system

The final goal here is to have a portable wheel file, but until we’re not sure the extension (mostly C/C++) build process (build_ext) is working, for try and error it doesn’t make sense to invoke the full process of wheel generation.

  • If the current project has any specific build steps, then use those.

  • Otherwise

2.2. Create portable wheel file

  • note: this step requires to install wheel by pip

  • If project specific build process or generic build_ext is working, we can try wheel generation