Home | History | Annotate | Download | only in scan-build

Lines Matching refs:Compiler

3 #                     The LLVM Compiler Infrastructure
25 # Compiler command setup.
28 # Search in the PATH if the compiler exists
39 my $Compiler;
62 $Compiler = $ENV{'CCC_CXX'};
63 if (!defined $Compiler || (! -x $Compiler && ! SearchInPath($Compiler))) { $Compiler = $DefaultCXXCompiler; }
71 $Compiler = $ENV{'CCC_CC'};
72 if (!defined $Compiler || (! -x $Compiler && ! SearchInPath($Compiler))) { $Compiler = $DefaultCCompiler; }
148 `$Compiler -v >> $PPFile.info.txt 2>&1`;
449 my $Status = system($Compiler,@ARGV);
451 print STDERR "$Compiler @ARGV\n";
522 # Options with possible arguments that should pass through to compiler.
543 # Options with possible arguments that should pass through to both compiler
624 # Get the compiler/link mode.