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:
parent
7319516749
commit
876305adf0
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user