Lines Matching refs:cc
796 cc => 'CC',
1390 my $cc = $user{CC} // 'cc';
1391 $target = $cc if $table{$cc} && !$table{$cc}->{template};
1715 my $cc = $config{CROSS_COMPILE}.$config{CC};
1716 open(PIPE, "$cc -Wa,--help -c -o null.$$.o -x assembler /dev/null 2>&1 |");
1825 my $cc = $config{CROSS_COMPILE}.$config{CC};
1827 … system("printf '#include <sys/types.h>\n#include <linux/tls.h>' | $cc -E - >/dev/null 2>&1");
1832 system("printf '#include <sys/types.h>\n#include <sys/ktls.h>' | $cc -E - >/dev/null 2>&1");
3379 my $cc = shift;
3384 unless $cc;
3386 if (! $predefined{$cc}) {
3388 $predefined{$cc} = {};
3391 open(PIPE, "$cc -dM -E -x c /dev/null 2>&1 |");
3394 $predefined{$cc}->{$1} = $2 // '';
3399 return %{$predefined{$cc}};