mesa: check aarch64 system type as well (#14493)

to disabled use of libunwind.  Without this mesa fails to build
using recent Cray compilers - cce 9 and higher -  on aarch64 systems.

Signed-off-by: Howard Pritchard <hppritcha@gmail.com>
This commit is contained in:
Howard Pritchard 2020-01-16 11:21:34 -07:00 committed by Adam J. Stewart
parent 7319516749
commit 876305adf0

View File

@ -101,7 +101,7 @@ def configure_args(self):
args_gallium_drivers = ['swrast']
args_dri_drivers = []
if spec.target.family == 'arm':
if spec.target.family == 'arm' or spec.target.family == 'aarch64':
args.append('--disable-libunwind')
num_frontends = 0