blast-plus package: remove --with-64 on ARM. (#11877)

This configure option is not supported on ARM
This commit is contained in:
Toyohisa Kameyama 2019-06-29 02:11:04 +09:00 committed by Peter Scheibel
parent ac76e4692f
commit ae8710fa36

View file

@ -102,10 +102,11 @@ def configure_args(self):
'--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