tinycc/conftest.c

88 lines
1.8 KiB
C
Raw Permalink Normal View History

#include <stdio.h>
2013-02-14 14:39:35 +00:00
/* Define architecture */
#if defined(__i386__) || defined _M_IX86
2013-02-14 14:39:35 +00:00
# define TRIPLET_ARCH "i386"
#elif defined(__x86_64__) || defined _M_AMD64
2013-02-14 14:39:35 +00:00
# define TRIPLET_ARCH "x86_64"
#elif defined(__arm__)
# define TRIPLET_ARCH "arm"
#elif defined(__aarch64__)
# define TRIPLET_ARCH "aarch64"
2013-02-14 14:39:35 +00:00
#else
# define TRIPLET_ARCH "unknown"
#endif
/* Define OS */
#if defined (__linux__)
# define TRIPLET_OS "linux"
#elif defined (__FreeBSD__) || defined (__FreeBSD_kernel__)
# define TRIPLET_OS "kfreebsd"
#elif defined _WIN32
# define TRIPLET_OS "win32"
2013-02-14 14:39:35 +00:00
#elif !defined (__GNU__)
# define TRIPLET_OS "unknown"
#endif
/* Define calling convention and ABI */
2013-02-14 15:40:16 +00:00
#if defined (__ARM_EABI__)
# if defined (__ARM_PCS_VFP)
# define TRIPLET_ABI "gnueabihf"
# else
# define TRIPLET_ABI "gnueabi"
# endif
#else
# define TRIPLET_ABI "gnu"
#endif
2013-02-14 14:39:35 +00:00
#if defined _WIN32
# define TRIPLET TRIPLET_ARCH "-" TRIPLET_OS
#elif defined __GNU__
2013-02-14 14:39:35 +00:00
# define TRIPLET TRIPLET_ARCH "-" TRIPLET_ABI
#else
# define TRIPLET TRIPLET_ARCH "-" TRIPLET_OS "-" TRIPLET_ABI
#endif
2014-02-08 22:38:41 +00:00
#if defined(_WIN32)
int _CRT_glob = 0;
#endif
int main(int argc, char *argv[])
{
switch(argc == 2 ? argv[1][0] : 0) {
2013-02-14 14:39:35 +00:00
case 'b':
{
volatile unsigned foo = 0x01234567;
puts(*(unsigned char*)&foo == 0x67 ? "no" : "yes");
break;
2013-02-14 14:39:35 +00:00
}
#ifdef __GNUC__
case 'm':
printf("%d\n", __GNUC_MINOR__);
break;
case 'v':
2013-02-14 14:39:35 +00:00
printf("%d\n", __GNUC__);
break;
#elif defined __TINYC__
case 'v':
puts("0");
break;
case 'm':
printf("%d\n", __TINYC__);
break;
2013-02-14 14:39:35 +00:00
#else
case 'm':
2013-02-14 14:39:35 +00:00
case 'v':
puts("0");
break;
#endif
2013-02-14 14:39:35 +00:00
case 't':
puts(TRIPLET);
break;
default:
break;
}
return 0;
}