fw4spl
CMakeCXXCompilerABI.cpp
1 #ifndef __cplusplus
2 # error "A C compiler has been selected for C++."
3 #endif
4 
5 /*--------------------------------------------------------------------------*/
6 
7 #include "CMakeCompilerABI.h"
8 
9 /*--------------------------------------------------------------------------*/
10 
11 int main(int argc, char* argv[])
12 {
13  int require = 0;
14  require += info_sizeof_dptr[argc];
15 #if defined(ABI_ID)
16  require += info_abi[argc];
17 #endif
18  (void)argv;
19  return require;
20 }