Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
argo
Applications
LAMMPS
Commits
a10bb4b9
Commit
a10bb4b9
authored
Aug 23, 2018
by
Christoph Junghans
Browse files
cmake: fix link issue with --as-needed
parent
b47e4922
Changes
1
Hide whitespace changes
Inline
Side-by-side
cmake/CMakeLists.txt
View file @
a10bb4b9
...
...
@@ -276,11 +276,14 @@ endif()
if
(
PKG_MSCG OR PKG_USER-ATC OR PKG_USER-AWPMD OR PKG_USER-QUIP OR PKG_LATTE
)
find_package
(
LAPACK
)
if
(
NOT LAPACK_FOUND
)
find_package
(
BLAS
)
if
(
NOT LAPACK_FOUND OR NOT BLAS_FOUND
)
enable_language
(
Fortran
)
file
(
GLOB LAPACK_SOURCES
${
LAMMPS_LIB_SOURCE_DIR
}
/linalg/*.[fF]
)
add_library
(
linalg STATIC
${
LAPACK_SOURCES
}
)
set
(
LAPACK_LIBRARIES linalg
)
else
()
list
(
APPEND LAPACK_LIBRARIES
${
BLAS_LIBRARIES
}
)
endif
()
endif
()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment