Improve __*LP*__ predefined macros
This commit is contained in:
parent
e91ce66dad
commit
c1b101cbaf
1 changed files with 9 additions and 2 deletions
11
libtcc.c
11
libtcc.c
|
@ -1143,14 +1143,21 @@ LIBTCCAPI TCCState *tcc_new(void)
|
||||||
# endif
|
# endif
|
||||||
|
|
||||||
/* TinyCC & gcc defines */
|
/* TinyCC & gcc defines */
|
||||||
#if defined TCC_TARGET_PE && defined TCC_TARGET_X86_64
|
#if defined(TCC_TARGET_PE) && defined(TCC_TARGET_X86_64)
|
||||||
|
/* 64bit Windows. */
|
||||||
tcc_define_symbol(s, "__SIZE_TYPE__", "unsigned long long");
|
tcc_define_symbol(s, "__SIZE_TYPE__", "unsigned long long");
|
||||||
tcc_define_symbol(s, "__PTRDIFF_TYPE__", "long long");
|
tcc_define_symbol(s, "__PTRDIFF_TYPE__", "long long");
|
||||||
tcc_define_symbol(s, "__LLP64__", NULL);
|
tcc_define_symbol(s, "__LLP64__", NULL);
|
||||||
#else
|
#elif defined(TCC_TARGET_X86_64) || defined(TCC_TARGET_ARM64)
|
||||||
|
/* Other 64bit systems. */
|
||||||
tcc_define_symbol(s, "__SIZE_TYPE__", "unsigned long");
|
tcc_define_symbol(s, "__SIZE_TYPE__", "unsigned long");
|
||||||
tcc_define_symbol(s, "__PTRDIFF_TYPE__", "long");
|
tcc_define_symbol(s, "__PTRDIFF_TYPE__", "long");
|
||||||
tcc_define_symbol(s, "__LP64__", NULL);
|
tcc_define_symbol(s, "__LP64__", NULL);
|
||||||
|
#else
|
||||||
|
/* Other 32bit systems. */
|
||||||
|
tcc_define_symbol(s, "__SIZE_TYPE__", "unsigned long");
|
||||||
|
tcc_define_symbol(s, "__PTRDIFF_TYPE__", "long");
|
||||||
|
tcc_define_symbol(s, "__ILP32__", NULL);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef TCC_TARGET_PE
|
#ifdef TCC_TARGET_PE
|
||||||
|
|
Loading…
Reference in a new issue