summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorToyohisa Kameyama <kameyama@riken.jp>2019-06-29 02:11:04 +0900
committerPeter Scheibel <scheibel1@llnl.gov>2019-06-28 10:11:04 -0700
commitae8710fa36a48ecff0c79ec099a8cd1faed4438f (patch)
treefec77d272cea220dd05b6782f3997f3e313857de
parentac76e4692f71a51f7715618cdd0285cf86d05c3f (diff)
downloadspack-ae8710fa36a48ecff0c79ec099a8cd1faed4438f.tar.gz
spack-ae8710fa36a48ecff0c79ec099a8cd1faed4438f.tar.bz2
spack-ae8710fa36a48ecff0c79ec099a8cd1faed4438f.tar.xz
spack-ae8710fa36a48ecff0c79ec099a8cd1faed4438f.zip
blast-plus package: remove --with-64 on ARM. (#11877)
This configure option is not supported on ARM
-rw-r--r--var/spack/repos/builtin/packages/blast-plus/package.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/blast-plus/package.py b/var/spack/repos/builtin/packages/blast-plus/package.py
index 0492911ede..c02d010776 100644
--- a/var/spack/repos/builtin/packages/blast-plus/package.py
+++ b/var/spack/repos/builtin/packages/blast-plus/package.py
@@ -102,10 +102,11 @@ class BlastPlus(AutotoolsPackage):
'--with-bin-release',
'--without-debug',
'--with-mt',
- '--with-64',
'--without-boost',
]
+ if 'aarch64' not in spec.architecture.target.lower():
+ config_args.append('--with-64')
if '+static' in spec:
config_args.append('--with-static')
# FIXME