Skip to content

Commit

Permalink
mesa: check aarch64 system type as well (spack#14493)
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
hppritcha authored and adamjstewart committed Jan 16, 2020
1 parent 7319516 commit 876305a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion var/spack/repos/builtin/packages/mesa/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 876305a

Please sign in to comment.