You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
517 B
25 lines
517 B
#ifndef __cplusplus
|
|
# error "A C compiler has been selected for C++."
|
|
#endif
|
|
|
|
/*--------------------------------------------------------------------------*/
|
|
|
|
#include "CMakeCompilerABI.h"
|
|
|
|
/*--------------------------------------------------------------------------*/
|
|
|
|
/* Make sure the information strings are referenced. */
|
|
#define REQUIRE(x) (&x[0] != &require)
|
|
|
|
int main()
|
|
{
|
|
const char require = 0;
|
|
return
|
|
(
|
|
REQUIRE(info_sizeof_dptr)
|
|
#if defined(ABI_ID)
|
|
&& REQUIRE(info_abi)
|
|
#endif
|
|
);
|
|
}
|