qt: fixed build with apple-clang (#17706)

This commit is contained in:
Seth R. Johnson 2020-07-27 12:32:29 -04:00 committed by GitHub
parent 4e4b8d8249
commit 6c2749536e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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'}