mirror of
https://github.com/frida/tinycc
synced 2024-11-28 10:33:07 +03:00
Add Microsoft processor identification
This commit is contained in:
parent
e38f49e32a
commit
30238b1ebd
6
libtcc.c
6
libtcc.c
@ -1122,6 +1122,12 @@ LIBTCCAPI TCCState *tcc_new(void)
|
|||||||
tcc_define_symbol(s, "_WIN32", NULL);
|
tcc_define_symbol(s, "_WIN32", NULL);
|
||||||
# ifdef TCC_TARGET_X86_64
|
# ifdef TCC_TARGET_X86_64
|
||||||
tcc_define_symbol(s, "_WIN64", NULL);
|
tcc_define_symbol(s, "_WIN64", NULL);
|
||||||
|
/* Those are defined by Visual Studio */
|
||||||
|
tcc_define_symbol(s, "_M_X64", "100");
|
||||||
|
tcc_define_symbol(s, "_M_AMD64", "100");
|
||||||
|
# else
|
||||||
|
/* Defined by Visual Studio. 300 == 80386. */
|
||||||
|
tcc_define_symbol(s, "_M_IX86", "300");
|
||||||
# endif
|
# endif
|
||||||
#else
|
#else
|
||||||
tcc_define_symbol(s, "__unix__", NULL);
|
tcc_define_symbol(s, "__unix__", NULL);
|
||||||
|
Loading…
Reference in New Issue
Block a user