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
Second, if OpenMP is not found, then ${OpenMP_CXX_FLAGS} will be the string "NOTFOUND" which leads to compile errors. If OpenMP is strictly required for the tests, then REQUIRED should be added to the find_package call. If it's not required, then the CMAKE_CXX_FLAGS should be changed conditionally based on the OpenMP_CXX_FOUND flag.
Reported by: neothemachine
The text was updated successfully, but these errors were encountered:
Is it, actually? Which particular test(s) require it? For version 0.3.95 it seems I can just delete lines that match OpenMP and all 26 (on x86, one less elsewhere because of SSE) tests would build and pass fine.
This is about problems in the
tests/CMakeLists.txt
file.First, the following two lines appear twice:
Second, if OpenMP is not found, then
${OpenMP_CXX_FLAGS}
will be the string "NOTFOUND" which leads to compile errors. If OpenMP is strictly required for the tests, thenREQUIRED
should be added to thefind_package
call. If it's not required, then theCMAKE_CXX_FLAGS
should be changed conditionally based on theOpenMP_CXX_FOUND
flag.Reported by: neothemachine
The text was updated successfully, but these errors were encountered: