aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorShyamnath Premnadh <[email protected]>2024-03-13 16:10:57 +0100
committerShyamnath Premnadh <[email protected]>2024-03-13 17:18:28 +0100
commitfefb8237fc87512ade55381e3af990b8478f0863 (patch)
tree9c271357ba5621dafc3552dbd73dab5757898163
parentfc881cd8d4eb9f74eaf69a8b84a27ad10ffe9402 (diff)
Android Deployment: Remove --limited-api
- deployment is anyway tied to Python 3.11. No point in having the --limited-api option. Task-number: PYSIDE-1612 Change-Id: Ia12fe60fe3bbb828664bb8c8ba16b3adf0130252 Reviewed-by: Cristian Maureira-Fredes <[email protected]>
-rw-r--r--tools/cross_compile_android/main.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/cross_compile_android/main.py b/tools/cross_compile_android/main.py
index 5e4d22890..bda438cca 100644
--- a/tools/cross_compile_android/main.py
+++ b/tools/cross_compile_android/main.py
@@ -289,7 +289,7 @@ if __name__ == "__main__":
# 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", "--limited-api=yes",
+ "--standalone",
f"--cmake-toolchain-file={str(qfp_toolchain.resolve())}",
f"--qt-host-path={qt_install_path}/gcc_64",
f"--plat-name=android_{platform_data.plat_name}",