qt-build-tools/6.5.1/_tools/cmake/share/cmake-3.27/Modules/CMakeCXXCompilerABI.cpp

19 lines
388 B
C++
Raw Normal View History

2023-11-01 06:11:15 +08:00
#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];
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;
}