You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Pretty much exactly what the subject says. When clang is the compiler, I need to use GLM_FORCE_SSE2 to generate SSE code. Without the force set, I get the following output from GLM_MESSAGES:
/Users/branan/personal/sense/vendor/glm/glm/detail/setup.hpp:87:11: warning: GLM: Apple platform detected
[-W#pragma-messages]
# pragma message("GLM: Apple platform detected")
^
/Users/branan/personal/sense/vendor/glm/glm/detail/setup.hpp:328:11: warning: GLM: Clang compiler detected
[-W#pragma-messages]
# pragma message("GLM: Clang compiler detected")
^
/Users/branan/personal/sense/vendor/glm/glm/detail/setup.hpp:368:11: warning: GLM: 64 bits model [-W#pragma-messages]
# pragma message("GLM: 64 bits model")
^
/Users/branan/personal/sense/vendor/glm/glm/detail/setup.hpp:469:11: warning: GLM: C++11 [-W#pragma-messages]
# pragma message("GLM: C++11")
^
/Users/branan/personal/sense/vendor/glm/glm/detail/setup.hpp:479:10: warning: GLM: #define GLM_FORCE_CXX98,
GLM_FORCE_CXX03, GLM_LANG_CXX11 or GLM_FORCE_CXX1Y to force using a specific version of the C++ language
[-W#pragma-messages]
# pragma message("GLM: #define GLM_FORCE_CXX98, GLM_FORCE_CXX03, GLM_LANG_CXX11 or GLM_FORCE_CXX1Y to forc...
^
/Users/branan/personal/sense/vendor/glm/glm/detail/setup.hpp:647:11: warning: GLM: Platform independent
[-W#pragma-messages]
# pragma message("GLM: Platform independent")
The text was updated successfully, but these errors were encountered:
Pretty much exactly what the subject says. When clang is the compiler, I need to use
GLM_FORCE_SSE2
to generate SSE code. Without the force set, I get the following output fromGLM_MESSAGES
:The text was updated successfully, but these errors were encountered: