Skip to content
Snippets Groups Projects
Commit 876305ad authored by Howard Pritchard's avatar Howard Pritchard Committed by Adam J. Stewart
Browse files

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: default avatarHoward Pritchard <hppritcha@gmail.com>
parent 73195167
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment