https://github.com/Kitware/CMake
Raw File
Tip revision: d1cb554c99c73e1486fbf4e09125337a7c0e9ea3 authored by Brad King on 02 March 2020, 19:15:14 UTC
CMake 3.17.0-rc2
Tip revision: d1cb554
CMakeCXXCompilerABI.cpp
#ifndef __cplusplus
#  error "A C compiler has been selected for C++."
#endif

#include "CMakeCompilerABI.h"

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