Merge topic 'update-kwsys'
fe05ad97
Merge branch 'upstream-kwsys' into update-kwsyse25f294a
KWSys 2015-12-01 (9596e98d)
This commit is contained in:
commit
36e6ee913d
|
@ -88,6 +88,10 @@
|
|||
#elif defined(__mips) || defined(__mips__) || defined(__MIPS__)
|
||||
# define @KWSYS_NAMESPACE@_CPU_ENDIAN_ID @KWSYS_NAMESPACE@_CPU_ENDIAN_ID_BIG
|
||||
|
||||
/* NIOS2 */
|
||||
#elif defined(__NIOS2__) || defined(__NIOS2) || defined(__nios2__)
|
||||
# define @KWSYS_NAMESPACE@_CPU_ENDIAN_ID @KWSYS_NAMESPACE@_CPU_ENDIAN_ID_LITTLE
|
||||
|
||||
/* OpenRISC 1000 */
|
||||
#elif defined(__or1k__)
|
||||
# define @KWSYS_NAMESPACE@_CPU_ENDIAN_ID @KWSYS_NAMESPACE@_CPU_ENDIAN_ID_BIG
|
||||
|
|
|
@ -2241,7 +2241,7 @@ static kwsysProcessTime kwsysProcessTimeAdd(kwsysProcessTime in1, kwsysProcessTi
|
|||
kwsysProcessTime out;
|
||||
out.tv_sec = in1.tv_sec + in2.tv_sec;
|
||||
out.tv_usec = in1.tv_usec + in2.tv_usec;
|
||||
if(out.tv_usec > 1000000)
|
||||
if(out.tv_usec >= 1000000)
|
||||
{
|
||||
out.tv_usec -= 1000000;
|
||||
out.tv_sec += 1;
|
||||
|
|
|
@ -2970,6 +2970,8 @@ std::string SystemTools::FindProgram(
|
|||
bool no_system_path)
|
||||
{
|
||||
std::vector<std::string> extensions;
|
||||
std::string tryPath;
|
||||
|
||||
#if defined (_WIN32) || defined(__CYGWIN__) || defined(__MINGW32__)
|
||||
bool hasExtension = false;
|
||||
// check to see if the name already has a .xxx at
|
||||
|
@ -2983,22 +2985,22 @@ std::string SystemTools::FindProgram(
|
|||
{
|
||||
extensions.push_back(".com");
|
||||
extensions.push_back(".exe");
|
||||
}
|
||||
#endif
|
||||
std::string tryPath;
|
||||
|
||||
// first try with extensions if the os supports them
|
||||
for(std::vector<std::string>::iterator i =
|
||||
extensions.begin(); i != extensions.end(); ++i)
|
||||
{
|
||||
tryPath = name;
|
||||
tryPath += *i;
|
||||
if(SystemTools::FileExists(tryPath) &&
|
||||
!SystemTools::FileIsDirectory(tryPath))
|
||||
// first try with extensions if the os supports them
|
||||
for(std::vector<std::string>::iterator i =
|
||||
extensions.begin(); i != extensions.end(); ++i)
|
||||
{
|
||||
return SystemTools::CollapseFullPath(tryPath);
|
||||
tryPath = name;
|
||||
tryPath += *i;
|
||||
if(SystemTools::FileExists(tryPath) &&
|
||||
!SystemTools::FileIsDirectory(tryPath))
|
||||
{
|
||||
return SystemTools::CollapseFullPath(tryPath);
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
// now try just the name
|
||||
tryPath = name;
|
||||
if(SystemTools::FileExists(tryPath) &&
|
||||
|
@ -3048,8 +3050,7 @@ std::string SystemTools::FindProgram(
|
|||
tryPath = *p;
|
||||
tryPath += name;
|
||||
tryPath += *ext;
|
||||
if(SystemTools::FileExists(tryPath) &&
|
||||
!SystemTools::FileIsDirectory(tryPath))
|
||||
if(SystemTools::FileExists(tryPath, true))
|
||||
{
|
||||
return SystemTools::CollapseFullPath(tryPath);
|
||||
}
|
||||
|
@ -3057,8 +3058,7 @@ std::string SystemTools::FindProgram(
|
|||
// now try it without them
|
||||
tryPath = *p;
|
||||
tryPath += name;
|
||||
if(SystemTools::FileExists(tryPath) &&
|
||||
!SystemTools::FileIsDirectory(tryPath))
|
||||
if(SystemTools::FileExists(tryPath, true))
|
||||
{
|
||||
return SystemTools::CollapseFullPath(tryPath);
|
||||
}
|
||||
|
@ -3097,8 +3097,7 @@ std::string SystemTools
|
|||
const std::vector<std::string>& userPaths)
|
||||
{
|
||||
// See if the executable exists as written.
|
||||
if(SystemTools::FileExists(name) &&
|
||||
!SystemTools::FileIsDirectory(name))
|
||||
if(SystemTools::FileExists(name, true))
|
||||
{
|
||||
return SystemTools::CollapseFullPath(name);
|
||||
}
|
||||
|
@ -3144,8 +3143,7 @@ std::string SystemTools
|
|||
tryPath = *p;
|
||||
tryPath += name;
|
||||
tryPath += ".lib";
|
||||
if(SystemTools::FileExists(tryPath)
|
||||
&& !SystemTools::FileIsDirectory(tryPath))
|
||||
if(SystemTools::FileExists(tryPath, true))
|
||||
{
|
||||
return SystemTools::CollapseFullPath(tryPath);
|
||||
}
|
||||
|
@ -3154,8 +3152,7 @@ std::string SystemTools
|
|||
tryPath += "lib";
|
||||
tryPath += name;
|
||||
tryPath += ".so";
|
||||
if(SystemTools::FileExists(tryPath)
|
||||
&& !SystemTools::FileIsDirectory(tryPath))
|
||||
if(SystemTools::FileExists(tryPath, true))
|
||||
{
|
||||
return SystemTools::CollapseFullPath(tryPath);
|
||||
}
|
||||
|
@ -3163,8 +3160,7 @@ std::string SystemTools
|
|||
tryPath += "lib";
|
||||
tryPath += name;
|
||||
tryPath += ".a";
|
||||
if(SystemTools::FileExists(tryPath)
|
||||
&& !SystemTools::FileIsDirectory(tryPath))
|
||||
if(SystemTools::FileExists(tryPath, true))
|
||||
{
|
||||
return SystemTools::CollapseFullPath(tryPath);
|
||||
}
|
||||
|
@ -3172,8 +3168,7 @@ std::string SystemTools
|
|||
tryPath += "lib";
|
||||
tryPath += name;
|
||||
tryPath += ".sl";
|
||||
if(SystemTools::FileExists(tryPath)
|
||||
&& !SystemTools::FileIsDirectory(tryPath))
|
||||
if(SystemTools::FileExists(tryPath, true))
|
||||
{
|
||||
return SystemTools::CollapseFullPath(tryPath);
|
||||
}
|
||||
|
@ -3181,8 +3176,7 @@ std::string SystemTools
|
|||
tryPath += "lib";
|
||||
tryPath += name;
|
||||
tryPath += ".dylib";
|
||||
if(SystemTools::FileExists(tryPath)
|
||||
&& !SystemTools::FileIsDirectory(tryPath))
|
||||
if(SystemTools::FileExists(tryPath, true))
|
||||
{
|
||||
return SystemTools::CollapseFullPath(tryPath);
|
||||
}
|
||||
|
@ -3190,8 +3184,7 @@ std::string SystemTools
|
|||
tryPath += "lib";
|
||||
tryPath += name;
|
||||
tryPath += ".dll";
|
||||
if(SystemTools::FileExists(tryPath)
|
||||
&& !SystemTools::FileIsDirectory(tryPath))
|
||||
if(SystemTools::FileExists(tryPath, true))
|
||||
{
|
||||
return SystemTools::CollapseFullPath(tryPath);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue