https://github.com/Kitware/CMake
Raw File
Tip revision: 05a2ca7f87b9ae73f373e9967fde1ee5210e33af authored by Brad King on 20 November 2018, 14:31:28 UTC
CMake 3.13.0
Tip revision: 05a2ca7
CMakeCCompilerABI.c
#ifdef __cplusplus
#  error "A C++ compiler has been selected for C."
#endif

#ifdef __CLASSIC_C__
#  define const
#endif

#include "CMakeCompilerABI.h"

#ifdef __CLASSIC_C__
int main(argc, argv) int argc;
char* argv[];
#else
int main(int argc, char* argv[])
#endif
{
  int require = 0;
  require += info_sizeof_dptr[argc];
#if defined(ABI_ID)
  require += info_abi[argc];
#endif
  (void)argv;
  return require;
}
back to top