diff options
author | Shyamnath Premnadh <[email protected]> | 2024-05-14 10:16:55 +0200 |
---|---|---|
committer | Shyamnath Premnadh <[email protected]> | 2024-06-03 17:08:41 +0200 |
commit | 217dcaed583a8df0db5edd43bafa3cf3bbaeda90 (patch) | |
tree | ffd38a048a7bfbd956df54c646f66657f680b5f7 /build_scripts/platforms/unix.py | |
parent | eeb286ee7c943ff8ce612719cdbddf7b871d2442 (diff) |
Android Deployment: Build wheels with macOS host
- Additionally, also move setting Python_SOABI manually for Android to
where FindPython CMake module is called. This also aids in naming the
wheel correctly.
Pick-to: 6.7
Task-number: PYSIDE-2766
Change-Id: I73c089d31e2ee629f3ed676965fca27d53882110
Reviewed-by: Friedemann Kleint <[email protected]>
Reviewed-by: Cristian Maureira-Fredes <[email protected]>
Diffstat (limited to 'build_scripts/platforms/unix.py')
-rw-r--r-- | build_scripts/platforms/unix.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build_scripts/platforms/unix.py b/build_scripts/platforms/unix.py index 3333f5f96..8378d42be 100644 --- a/build_scripts/platforms/unix.py +++ b/build_scripts/platforms/unix.py @@ -237,7 +237,7 @@ def prepare_packages_posix(pyside_build, _vars, cross_build=False): if config.is_internal_pyside_build() or config.is_internal_shiboken_generator_build(): _vars['built_modules'] = generated_config['built_modules'] if sys.platform == 'darwin': - prepare_standalone_package_macos(pyside_build, _vars) + prepare_standalone_package_macos(pyside_build, _vars, is_android=is_android) else: prepare_standalone_package_linux(pyside_build, _vars, cross_build, is_android=is_android) |