From ae8710fa36a48ecff0c79ec099a8cd1faed4438f Mon Sep 17 00:00:00 2001
From: Toyohisa Kameyama <kameyama@riken.jp>
Date: Sat, 29 Jun 2019 02:11:04 +0900
Subject: [PATCH] blast-plus package: remove --with-64 on ARM. (#11877)

This configure option is not supported on ARM
---
 var/spack/repos/builtin/packages/blast-plus/package.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

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 @@ 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
-- 
GitLab