mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-09 10:25:32 +00:00
Use more generic preprocessor macro 64bit
__x86_64__ is only for Intel __LP64__ and _LP64 are for any arch that has 64bit `long int` and pointers, and 32bit `int` same as Intel.
This commit is contained in:
parent
d94c84dc4b
commit
674917f2bc
1 changed files with 1 additions and 1 deletions
|
|
@ -10,7 +10,7 @@
|
|||
#define strncasecmp _strnicmp
|
||||
#endif
|
||||
|
||||
#if __x86_64__
|
||||
#if defined(__LP64__) || defined(_LP64)
|
||||
/* 64-bit, g++ */
|
||||
#define KMX_64BIT
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue