Bug 1774225 - Allow color diagnostics in clang-cl builds. r=firefox-build-system-reviewers,andi

Differential Revision: https://phabricator.services.mozilla.com/D149272
This commit is contained in:
Emilio Cobos Álvarez 2022-06-14 15:55:28 +00:00
Родитель 549b3f9615
Коммит d1751df0f5
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -1863,7 +1863,7 @@ def color_cflags(info):
# before adding flags to return values.
if info.type == "gcc":
return "-fdiagnostics-color"
elif info.type == "clang":
elif info.type in ["clang", "clang-cl"]:
return "-fcolor-diagnostics"
else:
return ""