]> granicus.if.org Git - clang/commitdiff
More path updates with clang-cc...
authorTed Kremenek <kremenek@apple.com>
Tue, 24 Mar 2009 05:30:14 +0000 (05:30 +0000)
committerTed Kremenek <kremenek@apple.com>
Tue, 24 Mar 2009 05:30:14 +0000 (05:30 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@67609 91177308-0d34-0410-b5e6-96231b3b80d8

utils/scan-build

index e412a1f5fd96a63aff9179d0b57c7ce67db9c59d..8a13c6d3ff7d4d63fa18a08a0711de816f6e7922 100755 (executable)
@@ -81,9 +81,9 @@ sub DieDiag {
 # Some initial preprocessing of Clang options.
 ##----------------------------------------------------------------------------##
 
-my $ClangSB = Cwd::realpath("$RealBin/bin/clang-cc");
+my $ClangSB = Cwd::realpath("$RealBin/libexec/clang-cc");
 
-# Also look for 'clang' in the same directory as scan-build.
+# Also look for 'clang-cc' in the same directory as scan-build.
 if (!defined $ClangSB || ! -x $ClangSB) {
   $ClangSB = Cwd::realpath("$RealBin/clang-cc");
 }
@@ -1158,14 +1158,14 @@ $HtmlDir = GetHTMLRunDir($HtmlDir);
 # Set the appropriate environment variables.
 SetHtmlEnv(\@ARGV, $HtmlDir);
 
-my $Cmd = Cwd::realpath("$RealBin/bin/ccc-analyzer");
+my $Cmd = Cwd::realpath("$RealBin/libexec/ccc-analyzer");
 if (!defined $Cmd || ! -x $Cmd) {
   $Cmd = Cwd::realpath("$RealBin/ccc-analyzer");
   DieDiag("Executable 'ccc-analyzer' does not exist at '$Cmd'\n") if(! -x $Cmd);
 }
 
 if (!defined $ClangSB || ! -x $ClangSB) {
-  Diag("'clang-cc' executable not found in '$RealBin/bin'.\n");
+  Diag("'clang-cc' executable not found in '$RealBin/libexec'.\n");
   Diag("Using 'clang-cc' from path.\n");
 }