Revision dcae93ee072292ef164d2361c7f3c860f167b46a authored by Brad King on 06 May 2014, 14:02:08 UTC, committed by Brad King on 06 May 2014, 14:02:08 UTC
2 parent s c553d68 + c0a6646
Raw File
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