cmake/Source/kwsys/kwsysPlatformTestsCXX.cxx

175 lines
3.5 KiB
C++
Raw Normal View History

2017-04-14 19:02:05 +02:00
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing#kwsys for details. */
2012-06-27 20:52:58 +03:00
2016-03-13 13:35:51 +01:00
#ifdef TEST_KWSYS_CXX_STAT_HAS_ST_MTIM
2018-08-09 18:06:22 +02:00
# include <sys/types.h>
2017-04-14 19:02:05 +02:00
2018-08-09 18:06:22 +02:00
# include <sys/stat.h>
# include <unistd.h>
int main()
{
struct stat stat1;
(void)stat1.st_mtim.tv_sec;
(void)stat1.st_mtim.tv_nsec;
return 0;
}
#endif
2016-03-13 13:35:51 +01:00
#ifdef TEST_KWSYS_CXX_STAT_HAS_ST_MTIMESPEC
2018-08-09 18:06:22 +02:00
# include <sys/types.h>
2017-04-14 19:02:05 +02:00
2018-08-09 18:06:22 +02:00
# include <sys/stat.h>
# include <unistd.h>
int main()
{
2016-03-13 13:35:51 +01:00
struct stat stat1;
(void)stat1.st_mtimespec.tv_sec;
(void)stat1.st_mtimespec.tv_nsec;
return 0;
}
#endif
2012-06-27 20:52:58 +03:00
#ifdef TEST_KWSYS_CXX_HAS_SETENV
2018-08-09 18:06:22 +02:00
# include <stdlib.h>
2012-06-27 20:52:58 +03:00
int main()
{
return setenv("A", "B", 1);
}
#endif
#ifdef TEST_KWSYS_CXX_HAS_UNSETENV
2018-08-09 18:06:22 +02:00
# include <stdlib.h>
2012-06-27 20:52:58 +03:00
int main()
{
unsetenv("A");
return 0;
}
#endif
#ifdef TEST_KWSYS_CXX_HAS_ENVIRON_IN_STDLIB_H
2018-08-09 18:06:22 +02:00
# include <stdlib.h>
2012-06-27 20:52:58 +03:00
int main()
{
char* e = environ[0];
2017-04-14 19:02:05 +02:00
return e ? 0 : 1;
2012-06-27 20:52:58 +03:00
}
#endif
2015-11-17 17:22:37 +01:00
#ifdef TEST_KWSYS_CXX_HAS_GETLOADAVG
// Match feature definitions from SystemInformation.cxx
2018-08-09 18:06:22 +02:00
# if (defined(__GNUC__) || defined(__PGI)) && !defined(_GNU_SOURCE)
# define _GNU_SOURCE
# endif
# include <stdlib.h>
2015-11-17 17:22:37 +01:00
int main()
{
double loadavg[3] = { 0.0, 0.0, 0.0 };
return getloadavg(loadavg, 3);
}
#endif
2013-03-16 19:13:01 +02:00
#ifdef TEST_KWSYS_CXX_HAS_RLIMIT64
2018-08-09 18:06:22 +02:00
# include <sys/resource.h>
2013-03-16 19:13:01 +02:00
int main()
{
struct rlimit64 rlim;
2017-04-14 19:02:05 +02:00
return getrlimit64(0, &rlim);
2013-03-16 19:13:01 +02:00
}
#endif
2013-11-03 12:27:13 +02:00
#ifdef TEST_KWSYS_CXX_HAS_UTIMES
2018-08-09 18:06:22 +02:00
# include <sys/time.h>
2013-11-03 12:27:13 +02:00
int main()
{
struct timeval* current_time = 0;
return utimes("/example", current_time);
}
#endif
#ifdef TEST_KWSYS_CXX_HAS_UTIMENSAT
2018-08-09 18:06:22 +02:00
# include <fcntl.h>
# include <sys/stat.h>
# if defined(__APPLE__)
# include <AvailabilityMacros.h>
# if MAC_OS_X_VERSION_MIN_REQUIRED < 101300
# error "utimensat not available on macOS < 10.13"
# endif
# endif
2013-11-03 12:27:13 +02:00
int main()
{
2017-04-14 19:02:05 +02:00
struct timespec times[2] = { { 0, UTIME_OMIT }, { 0, UTIME_NOW } };
2013-11-03 12:27:13 +02:00
return utimensat(AT_FDCWD, "/example", times, AT_SYMLINK_NOFOLLOW);
}
#endif
#ifdef TEST_KWSYS_CXX_HAS_BACKTRACE
2018-08-09 18:06:22 +02:00
# if defined(__PATHSCALE__) || defined(__PATHCC__) || \
(defined(__LSB_VERSION__) && (__LSB_VERSION__ < 41))
2018-04-23 21:13:27 +02:00
backtrace does not work with this compiler or os
2018-08-09 18:06:22 +02:00
# endif
# if (defined(__GNUC__) || defined(__PGI)) && !defined(_GNU_SOURCE)
# define _GNU_SOURCE
# endif
# include <execinfo.h>
2013-11-03 12:27:13 +02:00
int main()
{
2017-04-14 19:02:05 +02:00
void* stackSymbols[256];
backtrace(stackSymbols, 256);
backtrace_symbols(&stackSymbols[0], 1);
2013-11-03 12:27:13 +02:00
return 0;
}
#endif
#ifdef TEST_KWSYS_CXX_HAS_DLADDR
2018-08-09 18:06:22 +02:00
# if (defined(__GNUC__) || defined(__PGI)) && !defined(_GNU_SOURCE)
# define _GNU_SOURCE
# endif
# include <dlfcn.h>
2013-11-03 12:27:13 +02:00
int main()
{
Dl_info info;
2017-04-14 19:02:05 +02:00
int ierr = dladdr((void*)main, &info);
2013-11-03 12:27:13 +02:00
return 0;
}
#endif
#ifdef TEST_KWSYS_CXX_HAS_CXXABI
2018-08-09 18:06:22 +02:00
# if (defined(__GNUC__) || defined(__PGI)) && !defined(_GNU_SOURCE)
# define _GNU_SOURCE
# endif
# if defined(__SUNPRO_CC) && __SUNPRO_CC >= 0x5130 && __linux && \
__SUNPRO_CC_COMPAT == 'G'
# include <iostream>
# endif
# include <cxxabi.h>
2013-11-03 12:27:13 +02:00
int main()
{
int status = 0;
size_t bufferLen = 512;
2017-04-14 19:02:05 +02:00
char buffer[512] = { '\0' };
const char* function = "_ZN5kwsys17SystemInformation15GetProgramStackEii";
char* demangledFunction =
2013-11-03 12:27:13 +02:00
abi::__cxa_demangle(function, buffer, &bufferLen, &status);
return status;
}
#endif
2014-08-03 19:52:23 +02:00
#ifdef TEST_KWSYS_STL_HAS_WSTRING
2018-08-09 18:06:22 +02:00
# include <string>
2017-04-14 19:02:05 +02:00
void f(std::wstring*)
{
}
int main()
{
return 0;
}
2014-08-03 19:52:23 +02:00
#endif
2016-10-30 18:24:19 +01:00
#ifdef TEST_KWSYS_CXX_HAS_EXT_STDIO_FILEBUF_H
2018-08-09 18:06:22 +02:00
# include <ext/stdio_filebuf.h>
2017-04-14 19:02:05 +02:00
int main()
{
return 0;
}
2016-10-30 18:24:19 +01:00
#endif