Skip to content
Snippets Groups Projects
Commit 22efa1bf authored by Sylvestre Ledru's avatar Sylvestre Ledru
Browse files

Fix a bug when scan-build is used in a cross-compilation environment with

the --use-cc option.

Instead, we will search in the PATH
For example:
 scan-build --use-cc=arm-none-eabi-gcc -o out make -e

Initially reported as a Debian Bug:
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=748777



git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@215229 91177308-0d34-0410-b5e6-96231b3b80d8
parent 55a1129d
No related branches found
No related tags found
No related merge requests found
......@@ -25,6 +25,17 @@ use Text::ParseWords;
# Compiler command setup.
##===----------------------------------------------------------------------===##
# Search in the PATH if the compiler exists
sub SearchInPath {
my $file = shift;
foreach my $dir (split (':', $ENV{PATH})) {
if (-x "$dir/$file") {
return 1;
}
}
return 0;
}
my $Compiler;
my $Clang;
my $DefaultCCompiler;
......@@ -41,7 +52,7 @@ if (`uname -a` =~ m/Darwin/) {
if ($FindBin::Script =~ /c\+\+-analyzer/) {
$Compiler = $ENV{'CCC_CXX'};
if (!defined $Compiler || ! -x $Compiler) { $Compiler = $DefaultCXXCompiler; }
if (!defined $Compiler || (! -x $Compiler && ! SearchInPath($Compiler))) { $Compiler = $DefaultCXXCompiler; }
$Clang = $ENV{'CLANG_CXX'};
if (!defined $Clang || ! -x $Clang) { $Clang = 'clang++'; }
......@@ -50,7 +61,7 @@ if ($FindBin::Script =~ /c\+\+-analyzer/) {
}
else {
$Compiler = $ENV{'CCC_CC'};
if (!defined $Compiler || ! -x $Compiler) { $Compiler = $DefaultCCompiler; }
if (!defined $Compiler || (! -x $Compiler && ! SearchInPath($Compiler))) { $Compiler = $DefaultCCompiler; }
$Clang = $ENV{'CLANG'};
if (!defined $Clang || ! -x $Clang) { $Clang = 'clang'; }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment