Mentions légales du service

Skip to content
Snippets Groups Projects
Commit b195f3b4 authored by PRUVOST Florent's avatar PRUVOST Florent
Browse files

find libdl with find_library

parent a24a413d
No related branches found
No related tags found
No related merge requests found
......@@ -593,7 +593,12 @@ if( (NOT BLAS_FOUND_WITH_PKGCONFIG) OR BLAS_GIVEN_BY_USER )
list(APPEND BLAS_CFLAGS_OTHER "-m64")
endif()
if (NOT BLA_VENDOR STREQUAL "Intel10_64lp_seq")
list(APPEND OMP_LIB "-ldl")
find_library(
DL_LIBRARY
NAMES dl
HINTS ${_libdir}
)
list(APPEND OMP_LIB "${DL_LIBRARY}")
endif()
endif()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment