8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
OpenMP effectiveness can be configured by
mctc-lib/meson_options.txt
Lines 15 to 21 in cc30341
mctc-lib/config/CMakeLists.txt
Line 17 in cc30341
(the default values differ)
OpenMP flags, however, are not added even if the variable is set to true.
CMake requires something like
--- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -55,2 +55,10 @@ if(WITH_JSON) endif() +if(WITH_OpenMP) + find_package(OpenMP REQUIRED) + target_link_libraries( + "${PROJECT_NAME}-lib" + PRIVATE + "OpenMP::OpenMP_Fortran" + ) +endif() set_target_properties(
The feature is used in
mctc-lib/src/mctc/env/testing.f90
Lines 207 to 214 in cc30341
Lines 269 to 287 in cc30341
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
OpenMP effectiveness can be configured by
mctc-lib/meson_options.txt
Lines 15 to 21 in cc30341
mctc-lib/config/CMakeLists.txt
Line 17 in cc30341
(the default values differ)
OpenMP flags, however, are not added even if the variable is set to true.
CMake requires something like
The feature is used in
mctc-lib/src/mctc/env/testing.f90
Lines 207 to 214 in cc30341
mctc-lib/src/mctc/env/testing.f90
Lines 269 to 287 in cc30341
The text was updated successfully, but these errors were encountered: