qt-build-tools/6.5.1/_tools/cmake/share/cmake-3.27/Modules/CMakeCCompilerABI.c

29 lines
511 B
C
Raw Normal View History

2023-11-01 06:11:15 +08:00
#ifdef __cplusplus
# error "A C++ compiler has been selected for C."
#endif
#ifdef __CLASSIC_C__
# define const
#endif
#include "CMakeCompilerABI.h"
#ifdef __CLASSIC_C__
2023-11-01 08:44:24 +08:00
int main(argc, argv)
int argc;
2023-11-01 06:11:15 +08:00
char* argv[];
#else
int main(int argc, char* argv[])
#endif
{
int require = 0;
require += info_sizeof_dptr[argc];
2023-11-01 08:44:24 +08:00
require += info_byte_order_big_endian[argc];
require += info_byte_order_little_endian[argc];
2023-11-01 06:11:15 +08:00
#if defined(ABI_ID)
require += info_abi[argc];
#endif
(void)argv;
return require;
}