FindExecutable: remove the executability check.
authorMikhail Glushenkov <foldr@codedgers.com>
Tue, 2 Nov 2010 20:32:46 +0000 (20:32 +0000)
committerMikhail Glushenkov <foldr@codedgers.com>
Tue, 2 Nov 2010 20:32:46 +0000 (20:32 +0000)
This makes the behaviour of FindExecutable more consistent across platforms, but
I'm not very happy with the name...

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@118049 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Support/SystemUtils.h
lib/Support/SystemUtils.cpp

index 3c182c1ca8b0e44a5f04c7ac2443a12112b4761c..91fcfed02887306f2e4573443e8379db8fe10875 100644 (file)
@@ -30,10 +30,10 @@ bool CheckBitcodeOutputToConsole(
   bool print_warning = true     ///< Control whether warnings are printed
 );
 
-/// FindExecutable - Find a named executable, giving the argv[0] of program
-/// being executed. This allows us to find another LLVM tool if it is built in
-/// the same directory.  If the executable cannot be found, return an
-/// empty string.
+/// FindExecutable - Find a named executable, given the value of argv[0] of the
+/// program being executed and the address of main itself. This allows us to
+/// find another LLVM tool if it is built in the same directory. An empty string
+/// is returned on error.
 /// @brief Find a named executable.
 sys::Path FindExecutable(const std::string &ExeName,
                          const char *Argv0, void *MainAddr);
index 820e7cfbb17cfce79fd98b4edd02d95df4e0d7fd..db61e7569cd4acda179ca30a2d049e812643a9f6 100644 (file)
@@ -32,11 +32,10 @@ bool llvm::CheckBitcodeOutputToConsole(raw_ostream &stream_to_check,
   return false;
 }
 
-/// FindExecutable - Find a named executable, giving the argv[0] of program
-/// being executed. This allows us to find another LLVM tool if it is built in
-/// the same directory.  If the executable cannot be found, return an
-/// empty string.
-/// @brief Find a named executable.
+/// FindExecutable - Find a named executable, given the value of argv[0] of the
+/// program being executed and the address of main itself. This allows us to
+/// find another LLVM tool if it is built in the same directory. An empty string
+/// is returned on error.
 #undef FindExecutable   // needed on windows :(
 sys::Path llvm::FindExecutable(const std::string &ExeName,
                                const char *Argv0, void *MainAddr) {
@@ -45,19 +44,10 @@ sys::Path llvm::FindExecutable(const std::string &ExeName,
   // is a relative path to the executable itself.
   sys::Path Result = sys::Path::GetMainExecutable(Argv0, MainAddr);
   Result.eraseComponent();
+
   if (!Result.isEmpty()) {
     Result.appendComponent(ExeName);
-    if (Result.canExecute())
-      return Result;
-    // If the path is absolute (and it usually is), call FindProgramByName to
-    // allow it to try platform-specific logic, such as appending a .exe suffix
-    // on Windows. Don't do this if we somehow have a relative path, because
-    // we don't want to go searching the PATH and accidentally find an unrelated
-    // version of the program.
-    if (Result.isAbsolute()) {
-      Result = sys::Program::FindProgramByName(Result.str());
-      return Result;
-    }
+    Result.appendSuffix(sys::Path::GetEXESuffix());
   }
 
   return Result;