2.1.9. ‑‑[no_]brief_diagnostics
This option enables or disables the output of brief diagnostic messages by the compiler.
When enabled, the original source line is not displayed, and error message text is not wrapped if it is too long to fit on a single line.
The default is ‑‑no_brief_diagnostics.
/* main.c */
#include <stdio.h>
int main(void)
{
printf("“Hello, world\n");
return 0;
}
Compiling this code with --brief_diagnostics produces a warning message.