2020-02-01 23:06:01 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
# error "A C++ compiler has been selected for Objective-C."
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*--------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
#include "CMakeCompilerABI.h"
|
|
|
|
|
|
|
|
/*--------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
int require = 0;
|
|
|
|
require += info_sizeof_dptr[argc];
|
2021-09-14 00:13:48 +02:00
|
|
|
require += info_byte_order_big_endian[argc];
|
|
|
|
require += info_byte_order_little_endian[argc];
|
2020-02-01 23:06:01 +01:00
|
|
|
#if defined(ABI_ID)
|
|
|
|
require += info_abi[argc];
|
|
|
|
#endif
|
|
|
|
(void)argv;
|
|
|
|
return require;
|
|
|
|
}
|