aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Albert <danalbert@google.com>2019-06-12 14:05:41 -0700
committerDan Albert <danalbert@google.com>2019-06-12 14:05:41 -0700
commit47d0219b276bea1230272e361739ab389b31d080 (patch)
tree9e8d5b8ec6d8f8d38249112c1350f91068a6e318
parentb551e604f2bb9848e4907944061760b75b0cdd70 (diff)
downloadyasm-47d0219b276bea1230272e361739ab389b31d080.tar.gz
Remove support for 32-bit Windows.
Test: ndk/checkbuild.py --system windows64 Bug: None Change-Id: I6e077771ccf34334388a2fe78da34b2f71b567a1
-rwxr-xr-xbuild.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/build.py b/build.py
index 8893c2e3..e0fc23a3 100755
--- a/build.py
+++ b/build.py
@@ -31,16 +31,16 @@ from ndk.hosts import Host
def main(args):
build_cmd = [
- 'bash', 'build-yasm.sh', build_support.toolchain_path(),
+ 'bash',
+ 'build-yasm.sh',
+ build_support.toolchain_path(),
build_support.ndk_path(),
+ '--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, 'yasm'))
build_support.build(build_cmd, args, intermediate_package=True)