Skip to content
Snippets Groups Projects
Commit 8f08b183 authored by Dan Albert's avatar Dan Albert
Browse files

Remove support for 32-bit Windows.

Test: ndk/checkbuild.py --system windows64
Bug: None
Change-Id: I6725ee6e2992602da67ec4eb2d0abef16a233025
parent b0e0a502
Branches tracking-qcomlt-dpu-dsc
No related merge requests found
......@@ -25,7 +25,6 @@ site.addsitedir(os.path.join(os.path.dirname(__file__), '../../ndk'))
# pylint: disable=import-error,wrong-import-position
import build_support
from ndk.hosts import Host
# pylint: enable=import-error,wrong-import-position
......@@ -34,15 +33,15 @@ def main(args):
build_support.toolchain_path())
build_cmd = [
'bash', 'build-python.sh', toolchain_dir_arg,
'bash',
'build-python.sh',
toolchain_dir_arg,
'--try-64',
]
if args.host.is_windows:
build_cmd.append('--mingw')
if args.host != Host.Windows:
build_cmd.append('--try-64')
build_cmd.append('--build-dir=' + os.path.join(args.out_dir, 'python'))
build_support.build(build_cmd, args, intermediate_package=True)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment