Mentions légales du service
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
morse_cmake
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
solverstack
morse_cmake
Compare revisions
a24a413d1eb9f35be5328589cb69ecddddf24854 to b195f3b4d00be3e191e4f7feef7a7702e2b5a52d
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
solverstack/morse_cmake
Select target project
No results found
b195f3b4d00be3e191e4f7feef7a7702e2b5a52d
Select Git revision
Branches
ci
feature/prec_xd_xz
master
Swap
Target
solverstack/morse_cmake
Select target project
solverstack/morse_cmake
gmarait/morse_cmake
rboucher/morse_cmake
mkuhn/morse_cmake
lvilleve/morse_cmake
tmijieux/morse_cmake
tcojean/morse_cmake
thibault/morse_cmake
vperrier/morse_cmake
tdelarue/morse_cmake
ekorkmaz/morse_cmake
11 results
a24a413d1eb9f35be5328589cb69ecddddf24854
Select Git revision
Branches
ci
feature/prec_xd_xz
master
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (1)
find libdl with find_library
· b195f3b4
PRUVOST Florent
authored
6 years ago
b195f3b4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
modules/find/FindBLAS.cmake
+6
-1
6 additions, 1 deletion
modules/find/FindBLAS.cmake
with
6 additions
and
1 deletion
modules/find/FindBLAS.cmake
View file @
b195f3b4
...
...
@@ -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
()
...
...
This diff is collapsed.
Click to expand it.