Lines Matching refs:Compiler
51 # Compiler command setup.
54 # Search in the PATH if the compiler exists
65 my $Compiler;
89 $Compiler = $ENV{'CCC_CXX'};
90 if (!defined $Compiler || (! -x $Compiler && ! SearchInPath($Compiler))) { $Compiler = $DefaultCXXCompiler; }
98 $Compiler = $ENV{'CCC_CC'};
99 if (!defined $Compiler || (! -x $Compiler && ! SearchInPath($Compiler))) { $Compiler = $DefaultCCompiler; }
177 `"$Compiler" -v >> $PPFile.info.txt 2>&1`;
454 my $Status = system($Compiler,@ARGV);
456 print STDERR "$Compiler @ARGV\n";
531 # Options with possible arguments that should pass through to compiler.
552 # Options with possible arguments that should pass through to both compiler
635 # Get the compiler/link mode.
671 # Handle -Xclang some-arg. Add both arguments to the compiler options.