diff options
author | Seth R. Johnson <johnsonsr@ornl.gov> | 2020-07-27 12:32:29 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-27 18:32:29 +0200 |
commit | 6c2749536e541790a09ab8dbabd6b91042a4da43 (patch) | |
tree | bf635fca486e075f43ae80e13887d1c283ca7723 | |
parent | 4e4b8d82492d9de6d8d796d3d130193d60cebb4e (diff) | |
download | spack-6c2749536e541790a09ab8dbabd6b91042a4da43.tar.gz spack-6c2749536e541790a09ab8dbabd6b91042a4da43.tar.bz2 spack-6c2749536e541790a09ab8dbabd6b91042a4da43.tar.xz spack-6c2749536e541790a09ab8dbabd6b91042a4da43.zip |
qt: fixed build with apple-clang (#17706)
-rw-r--r-- | var/spack/repos/builtin/packages/qt/package.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/qt/package.py b/var/spack/repos/builtin/packages/qt/package.py index 0aa6e9c7c5..6081911e4a 100644 --- a/var/spack/repos/builtin/packages/qt/package.py +++ b/var/spack/repos/builtin/packages/qt/package.py @@ -178,6 +178,7 @@ class Qt(Package): # Mapping for compilers/systems in the QT 'mkspecs' compiler_mapping = {'intel': ('icc',), + 'apple-clang': ('clang-libc++', 'clang'), 'clang': ('clang-libc++', 'clang'), 'gcc': ('g++',)} platform_mapping = {'darwin': 'macx'} |