ENH: add new machines
This commit is contained in:
parent
e10a354d7e
commit
150805258a
|
@ -1,7 +1,8 @@
|
|||
ExpectedBuilds: \
|
||||
{ARRAKIS.kitware Win32-bcc551} \
|
||||
{ARRAKIS.kitware Win32-cygwin} \
|
||||
{ARRAKIS.kitware Win32-mingw} \
|
||||
{ARRAKIS.kitware Win32-mingw} \
|
||||
{ARRAKIS.kitware zRel24-Win32-bcc551} \
|
||||
{dash1win64.kitware Win64-vs80} \
|
||||
{dash1win98.kitware Win32-vs60} \
|
||||
{DASH1.kitware Win32-nmake71} \
|
||||
|
@ -42,11 +43,14 @@ ExpectedBuilds: \
|
|||
{dashsun1.kitware SunOS-gcc34-64} \
|
||||
{destiny.kitware HP-UX-aCC-gmake} \
|
||||
{destiny.kitware HP-UX-aCC} \
|
||||
{devqnx.acfr.usyd.edu.au qnx-V3.3.5-gcc_ntox86} \
|
||||
{heart HP-UXia64-aCC} \
|
||||
{hythloth.kitware Linux64-bullseye-cov} \
|
||||
{hythloth.kitware Linux-nightly-win32-release} \
|
||||
{hythloth.kitware Linux64-suncc-5.9} \
|
||||
{iris.elemtech IRIX64-CC-7.4} \
|
||||
{iris.elemtech IRIX64-CC-7.4} \
|
||||
{iris.elemtech IRIX64-CC64-7.4} \
|
||||
{JET.kitware Linux-valgrind2} \
|
||||
{krondor.kitware Darwin-c++} \
|
||||
{krondor.kitware zRel24-Darwin-c++} \
|
||||
{midworld.kitware DarwinG5-XCode15} \
|
||||
|
|
|
@ -271,7 +271,8 @@ void cmSystemTools::Stdout(const char* s)
|
|||
{
|
||||
if(s_StdoutCallback)
|
||||
{
|
||||
(*s_StdoutCallback)(s, strlen(s), s_StdoutCallbackClientData);
|
||||
(*s_StdoutCallback)(s, static_cast<int>(strlen(s)),
|
||||
s_StdoutCallbackClientData);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -1653,7 +1654,7 @@ int cmSystemToolsGZStructClose(void* call_data)
|
|||
ssize_t cmSystemToolsGZStructRead(void* call_data, void* buf, size_t count)
|
||||
{
|
||||
cmSystemToolsGZStruct* gzf = static_cast<cmSystemToolsGZStruct*>(call_data);
|
||||
return gzread(gzf->GZFile, buf, count);
|
||||
return gzread(gzf->GZFile, buf, static_cast<int>(count));
|
||||
}
|
||||
|
||||
ssize_t cmSystemToolsGZStructWrite(void* call_data, const void* buf,
|
||||
|
|
Loading…
Reference in New Issue