You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Both GCC and Clang support -### as an option that enables an "explainer" mode: it prints out the steps that the compiler would have run, without actually running them.
Both GCC and Clang support
-###
as an option that enables an "explainer" mode: it prints out the steps that the compiler would have run, without actually running them.For example:
clang -### -x c -
produces (on
stderr
):and for GCC:
/opt/homebrew/opt/gcc/bin/gcc-13 -### -x c
Notably, these have completely different formats.
The text was updated successfully, but these errors were encountered: