We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
in Cmakelists:
option (BOX2D_AVX2 "Enable AVX2 (faster)" ON)
could be replaced with:
if (CMAKE_SYSTEM_PROCESSOR MATCHES "x86_64|AMD64") option (BOX2D_AVX2 "Enable AVX2 (faster)" ON) else() option (BOX2D_AVX2 "Enable AVX2 (faster)" OFF) endif()
The text was updated successfully, but these errors were encountered:
more sanitizing (#149)
e2504c7
- more sanitizer usage, delayed by an enkiTS issue: dougbinks/enkiTS#125 - fix #145 - address #144 - fix #141
Successfully merging a pull request may close this issue.
in Cmakelists:
option (BOX2D_AVX2 "Enable AVX2 (faster)" ON)
could be replaced with:
if (CMAKE_SYSTEM_PROCESSOR MATCHES "x86_64|AMD64")
option (BOX2D_AVX2 "Enable AVX2 (faster)" ON)
else()
option (BOX2D_AVX2 "Enable AVX2 (faster)" OFF)
endif()
The text was updated successfully, but these errors were encountered: