1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
|
# Copyright (C) 2023 The Qt Company Ltd.
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
from __future__ import annotations
import sys
import logging
import argparse
import stat
import warnings
import shutil
from dataclasses import dataclass
from pathlib import Path
from git import Repo, RemoteProgress, GitCommandError
from tqdm import tqdm
from jinja2 import Environment, FileSystemLoader
from android_utilities import (run_command, download_android_commandlinetools,
download_android_ndk, install_android_packages)
# Note: Does not work with PyEnv. Your Host Python should contain openssl.
# also update the version in ShibokenHelpers.cmake if Python version changes.
PYTHON_VERSION = "3.11"
# minimum Android API version support. This is set according to Qt's requiremnts and needs to
# be updated if Qt's minimum API level is updated.
MIN_ANDROID_API_LEVEL = "28"
SKIP_UPDATE_HELP = ("skip the updation of SDK packages build-tools, platform-tools to"
" latest version")
ACCEPT_LICENSE_HELP = ('''
Accepts license automatically for Android SDK installation. Otherwise,
accept the license manually through command line.
''')
CLEAN_CACHE_HELP = ('''
Cleans cache stored in $HOME/.pyside6_deploy_cache.
Options:
1. all - all the cache including Android Ndk, Android Sdk and Cross-compiled Python are deleted.
2. ndk - Only the Android Ndk is deleted.
3. sdk - Only the Android Sdk is deleted.
4. python - The cross compiled Python for all platforms, the cloned CPython, the cross compilation
scripts for all platforms are deleted.
5. toolchain - The CMake toolchain file required for cross-compiling Qt for Python, for all
platforms are deleted.
If --clean-cache is used and no explicit value is suppied, then `all` is used as default.
''')
COIN_RUN_HELP = ('''
When run by Qt's continuos integration system COIN. This option is irrelevant to user building
their own wheels.
''')
@dataclass
class PlatformData:
plat_name: str
api_level: str
android_abi: str
qt_plat_name: str
gcc_march: str
plat_bits: str
def occp_exists():
'''
check if '--only-cross-compile-python' exists in command line arguments
'''
return "-occp" in sys.argv or "--only-cross-compile-python" in sys.argv
def download_only_exists():
'''
check if '--download-only' exists in command line arguments
'''
return "--download-only" in sys.argv
class CloneProgress(RemoteProgress):
def __init__(self):
super().__init__()
self.pbar = tqdm()
def update(self, op_code, cur_count, max_count=None, message=""):
self.pbar.total = max_count
self.pbar.n = cur_count
self.pbar.refresh()
if __name__ == "__main__":
parser = argparse.ArgumentParser(
description="This tool cross builds CPython for Android and uses that Python to cross build"
"Android Qt for Python wheels",
formatter_class=argparse.RawTextHelpFormatter,
)
parser.add_argument("-p", "--plat-name", type=str, nargs="*",
choices=["aarch64", "armv7a", "i686", "x86_64"],
default=["aarch64", "armv7a", "i686", "x86_64"], dest="plat_names",
help="Android target platforms")
parser.add_argument("-v", "--verbose", help="run in verbose mode", action="store_const",
dest="loglevel", const=logging.INFO)
parser.add_argument("--api-level", type=str, default="35",
help="Minimum Android API level to use")
parser.add_argument("--ndk-path", type=str, help="Path to Android NDK (Preferred r26b)")
# sdk path is needed to compile all the Qt Java Acitivity files into Qt6AndroidBindings.jar
parser.add_argument("--sdk-path", type=str, help="Path to Android SDK")
parser.add_argument(
"--qt-install-path",
type=str,
required=not (occp_exists() or download_only_exists()),
help="Qt installation path eg: /home/Qt/6.8.0"
)
parser.add_argument("-occp", "--only-cross-compile-python", action="store_true",
help="Only cross compiles Python for the specified Android platform")
parser.add_argument("--dry-run", action="store_true", help="show the commands to be run")
parser.add_argument("--skip-update", action="store_true",
help=SKIP_UPDATE_HELP)
parser.add_argument("--auto-accept-license", action="store_true",
help=ACCEPT_LICENSE_HELP)
parser.add_argument("--clean-cache", type=str, nargs="?", const="all",
choices=["all", "python", "ndk", "sdk", "toolchain"],
help=CLEAN_CACHE_HELP)
parser.add_argument("--coin", action="store_true",
help=COIN_RUN_HELP)
parser.add_argument("--download-only", action="store_true",
help="Only download Android NDK and SDK")
args = parser.parse_args()
logging.basicConfig(level=args.loglevel)
pyside_setup_dir = Path(__file__).parents[2].resolve()
qt_install_path = args.qt_install_path
ndk_path = args.ndk_path
sdk_path = args.sdk_path
only_py_cross_compile = args.only_cross_compile_python
android_abi = None
gcc_march = None
plat_bits = None
dry_run = args.dry_run
plat_names = args.plat_names
api_level = args.api_level
skip_update = args.skip_update
auto_accept_license = args.auto_accept_license
clean_cache = args.clean_cache
coin = args.coin
download_only = args.download_only
# auto download Android NDK and SDK
pyside6_deploy_cache = Path.home() / ".pyside6_android_deploy"
logging.info(f"Cache created at {str(pyside6_deploy_cache.resolve())}")
pyside6_deploy_cache.mkdir(exist_ok=True)
if pyside6_deploy_cache.exists() and clean_cache:
if clean_cache == "all":
shutil.rmtree(pyside6_deploy_cache)
elif clean_cache == "ndk":
cached_ndk_dir = pyside6_deploy_cache / "android-ndk"
if cached_ndk_dir.exists():
shutil.rmtree(cached_ndk_dir)
elif clean_cache == "sdk":
cached_sdk_dir = pyside6_deploy_cache / "android-sdk"
if cached_sdk_dir.exists():
shutil.rmtree(cached_sdk_dir)
elif clean_cache == "python":
cached_cpython_dir = pyside6_deploy_cache / "cpython"
if cached_cpython_dir.exists():
shutil.rmtree(pyside6_deploy_cache / "cpython")
for cc_python_path in pyside6_deploy_cache.glob("Python-*"):
if cc_python_path.is_dir():
shutil.rmtree(cc_python_path)
elif clean_cache == "toolchain":
for toolchain_path in pyside6_deploy_cache.glob("toolchain_*"):
if toolchain_path.is_file():
toolchain_path.unlink()
if not ndk_path:
# Download android ndk
ndk_path = download_android_ndk(pyside6_deploy_cache)
if not sdk_path:
# download and unzip command-line tools
sdk_path = download_android_commandlinetools(pyside6_deploy_cache)
# install and update required android packages
install_android_packages(android_sdk_dir=sdk_path, android_api=api_level,
dry_run=dry_run, accept_license=auto_accept_license,
skip_update=skip_update)
if download_only:
print(f"Android NDK and SDK downloaded successfully into {pyside6_deploy_cache}")
sys.exit(0)
templates_path = Path(__file__).parent / "templates"
for plat_name in plat_names:
# for armv7a the API level dependent binaries like clang are named
# armv7a-linux-androideabi27-clang, as opposed to other platforms which
# are named like x86_64-linux-android27-clang
platform_data = None
if plat_name == "armv7a":
platform_data = PlatformData("armv7a", api_level, "armeabi-v7a", "armv7",
"armv7", "32")
elif plat_name == "aarch64":
platform_data = PlatformData("aarch64", api_level, "arm64-v8a", "arm64_v8a", "armv8-a",
"64")
elif plat_name == "i686":
platform_data = PlatformData("i686", api_level, "x86", "x86", "i686", "32")
else: # plat_name is x86_64
platform_data = PlatformData("x86_64", api_level, "x86_64", "x86_64", "x86-64", "64")
# python path is valid, if Python for android installation exists in python_path
python_path = (pyside6_deploy_cache
/ f"Python-{platform_data.plat_name}-linux-android" / "_install")
valid_python_path = python_path.exists()
if Path(python_path).exists():
expected_dirs = ["lib", "include"]
for expected_dir in expected_dirs:
if not (Path(python_path) / expected_dir).is_dir():
valid_python_path = False
warnings.warn(
f"{str(python_path.resolve())} is corrupted. New Python for {plat_name} "
f"android will be cross-compiled into {str(pyside6_deploy_cache.resolve())}"
)
break
environment = Environment(loader=FileSystemLoader(templates_path))
if not valid_python_path:
# clone cpython and checkout 3.10
cpython_dir = pyside6_deploy_cache / "cpython"
python_ccompile_script = cpython_dir / f"cross_compile_{plat_name}.sh"
if not cpython_dir.exists():
logging.info(f"cloning cpython {PYTHON_VERSION}")
try:
Repo.clone_from(
"https://github.com/python/cpython.git",
cpython_dir,
progress=CloneProgress(),
branch=PYTHON_VERSION,
)
except GitCommandError as e:
# Print detailed error information
print(f"Error cloning repository: {e}")
print(f"Command: {e.command}")
print(f"Status: {e.status}")
print(f"Stderr: {e.stderr}")
if not python_ccompile_script.exists():
host_system_config_name = run_command("./config.guess", cwd=cpython_dir,
dry_run=dry_run, show_stdout=True,
capture_stdout=True).strip()
# use jinja2 to create cross_compile.sh script
template = environment.get_template("cross_compile.tmpl.sh")
content = template.render(
plat_name=platform_data.plat_name,
ndk_path=ndk_path,
api_level=platform_data.api_level,
android_py_install_path_prefix=pyside6_deploy_cache,
host_python_path=sys.executable,
python_version=PYTHON_VERSION,
host_system_name=host_system_config_name,
host_platform_name=sys.platform
)
logging.info(f"Writing Python cross compile script into {python_ccompile_script}")
with open(python_ccompile_script, mode="w", encoding="utf-8") as ccompile_script:
ccompile_script.write(content)
# give run permission to cross compile script
python_ccompile_script.chmod(python_ccompile_script.stat().st_mode | stat.S_IEXEC)
# clean built files
logging.info("Cleaning CPython built files")
run_command(["make", "distclean"], cwd=cpython_dir, dry_run=dry_run, ignore_fail=True)
# run the cross compile script
logging.info(f"Running Python cross-compile for platform {platform_data.plat_name}")
run_command([f"./{python_ccompile_script.name}"], cwd=cpython_dir, dry_run=dry_run,
show_stdout=True)
logging.info(
f"Cross compile Python for Android platform {platform_data.plat_name}. "
f"Final installation in {python_path}"
)
if only_py_cross_compile:
continue
if only_py_cross_compile:
requested_platforms = ",".join(plat_names)
print(f"Python for Android platforms: {requested_platforms} cross compiled "
f"to {str(pyside6_deploy_cache)}")
sys.exit(0)
qfp_toolchain = pyside6_deploy_cache / f"toolchain_{platform_data.plat_name}.cmake"
if not qfp_toolchain.exists():
template = environment.get_template("toolchain_default.tmpl.cmake")
content = template.render(
ndk_path=ndk_path,
sdk_path=sdk_path,
api_level=platform_data.api_level,
qt_install_path=qt_install_path,
plat_name=platform_data.plat_name,
android_abi=platform_data.android_abi,
qt_plat_name=platform_data.qt_plat_name,
gcc_march=platform_data.gcc_march,
plat_bits=platform_data.plat_bits,
python_version=PYTHON_VERSION,
target_python_path=python_path,
min_android_api=MIN_ANDROID_API_LEVEL
)
logging.info(f"Writing Qt for Python toolchain file into {qfp_toolchain}")
with open(qfp_toolchain, mode="w", encoding="utf-8") as ccompile_script:
ccompile_script.write(content)
# give run permission to cross compile script
qfp_toolchain.chmod(qfp_toolchain.stat().st_mode | stat.S_IEXEC)
if sys.platform == "linux":
host_qt_install_suffix = "gcc_64"
elif sys.platform == "darwin":
host_qt_install_suffix = "macos"
else:
raise RuntimeError("Qt for Python cross compilation not supported on this platform")
if coin:
target_path = str(Path(qt_install_path) / "target")
qt_host_install_path = qt_install_path
else:
target_path = str(Path(qt_install_path) / f"android_{platform_data.qt_plat_name}")
qt_host_install_path = str(Path(qt_install_path) / host_qt_install_suffix)
# run the cross compile script
logging.info(f"Running Qt for Python cross-compile for platform {platform_data.plat_name}")
qfp_ccompile_cmd = [sys.executable, "setup.py", "bdist_wheel", "--parallel=9",
"--standalone",
f"--cmake-toolchain-file={str(qfp_toolchain.resolve())}",
f"--qt-host-path={qt_host_install_path}",
f"--plat-name=android_{platform_data.plat_name}",
f"--python-target-path={python_path}",
f"--qt-target-path={target_path}",
"--no-qt-tools"]
run_command(qfp_ccompile_cmd, cwd=pyside_setup_dir, dry_run=dry_run, show_stdout=True)
|