Posted to tcl by oldlaptop at Sun Nov 15 01:56:39 GMT 2020view pretty

$ cat foo.c 
int main(void)
{
        return 'a' + 1;
}
$ make foo CC=clang CFLAGS=-Weverything 
clang -Weverything    foo.c   -o foo
$