-
Notifications
You must be signed in to change notification settings - Fork 13.6k
[Clang-CL][DXC] Should we expose -fdiagnostics-color=
to clang-cl / clang-dxc?
#119184
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Supporting |
So what needs to be done is enabling Probably somewhere there is already testing for |
Hi! This issue may be a good introductory issue for people new to working on LLVM. If you would like to work on this issue, your first steps are:
If you have any further questions about this issue, don't hesitate to ask via a comment in the thread below. |
@llvm/issue-subscribers-good-first-issue Author: Mészáros Gergely (Maetveis)
Apologies if the `HLSL` tag is not appropriate I did not find one for the `dxc` driver.
Recently while exposing more options to the Fortran In #118640 I am looking to disable to flag again, mostly to keep the PR a clean fix and not introduce new features, but |
Hey! I'd like to work on this, could it be assigned to me please? |
Uh oh!
There was an error while loading. Please reload this page.
Apologies if the
HLSL
tag is not appropriate I did not find one for thedxc
driver.Recently while exposing more options to the Fortran
flang
driver, some options were accidentally exposed toclang-cl
/clang-dxc
too. Among them is-fdiagnostics-color=
. Note that-fcolor-diagnostics
and-fno-color-diagnostics
are already allowed for both.-fdiagnostics-color=
allows one additional valueauto
which roughly means only use colors if the output is a terminal. This is also the default value of nothing is specified therefore,-fdiagnostics-color=
is mainly useful to override an earlier-f(no)?-color-diagnostics
/-fdiagnostics-color=
option.In #118640 I am looking to disable to flag again, mostly to keep the PR a clean fix and not introduce new features, but
personally I don't see a reason why this option shouldn't be exposed to
clang-cl
andclang-dxc
. If we do we should definitely add test however.The text was updated successfully, but these errors were encountered: