Restore __LP64__ checks in Xcode config header
This is still necessary when targeting 32-bit ARM platforms.
This commit is contained in:
parent
6211d53c62
commit
a3a6d5d388
1 changed files with 6 additions and 0 deletions
|
|
@ -71,9 +71,15 @@
|
|||
#define SIZEOF_WCHAR_T 4
|
||||
#define SIZEOF_SHORT 2
|
||||
#define SIZEOF_INT 4
|
||||
#ifdef __LP64__
|
||||
#define SIZEOF_VOID_P 8
|
||||
#define SIZEOF_LONG 8
|
||||
#define SIZEOF_SIZE_T 8
|
||||
#else
|
||||
#define SIZEOF_VOID_P 4
|
||||
#define SIZEOF_LONG 4
|
||||
#define SIZEOF_SIZE_T 4
|
||||
#endif
|
||||
#define SIZEOF_LONG_LONG 8
|
||||
#define wxSIZE_T_IS_ULONG 1
|
||||
#define wxWCHAR_T_IS_REAL_TYPE 1
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue