]> git.pld-linux.org Git - packages/GLM.git/blob - x32.patch
disable debug packages
[packages/GLM.git] / x32.patch
1 --- glm/test/core/core_setup_message.cpp.orig   2020-03-19 23:36:32.000000000 +0100
2 +++ glm/test/core/core_setup_message.cpp        2020-03-19 23:43:46.417701188 +0100
3 @@ -155,7 +155,13 @@
4  {
5         int Error = 0;
6         
7 -       Error += ((sizeof(void*) == 4) && (GLM_MODEL == GLM_MODEL_32)) || ((sizeof(void*) == 8) && (GLM_MODEL == GLM_MODEL_64)) ? 0 : 1;
8 +       Error += 
9 +               ((sizeof(void*) == 4) && (GLM_MODEL == GLM_MODEL_32)) || 
10 +               ((sizeof(void*) == 8) && (GLM_MODEL == GLM_MODEL_64))
11 +#ifdef __ILP32__
12 +               || ((sizeof(void*) == 4) && (GLM_MODEL == GLM_MODEL_64))
13 +#endif
14 +               ? 0 : 1;
15         
16         if(GLM_MODEL == GLM_MODEL_32)
17                 std::printf("GLM_MODEL_32\n");
This page took 0.115048 seconds and 3 git commands to generate.