mirror of
https://github.com/g-truc/glm.git
synced 2025-04-06 14:05:01 +00:00
Improved 64 bits support on GCC
This commit is contained in:
parent
7110f4febd
commit
02bd23bee7
1 changed files with 1 additions and 1 deletions
|
@ -126,7 +126,7 @@
|
|||
|
||||
#elif defined(__GNUC__)
|
||||
|
||||
#if(defined(__WORDSIZE) && (__WORDSIZE == 64)) || defined(__arch64__)
|
||||
#if(defined(__WORDSIZE) && (__WORDSIZE == 64)) || defined(__arch64__) || defined(__LP64__)
|
||||
#define GLM_MODEL GLM_MODEL_64
|
||||
#else
|
||||
#define GLM_MODEL GLM_MODEL_32
|
||||
|
|
Loading…
Add table
Reference in a new issue