forked from ruslo/hunter
-
Notifications
You must be signed in to change notification settings - Fork 181
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SuiteSparse: update to v1.6.1 (SuiteSparse v5.4.0), with METIS and OP…
…ENBLAS (#642) Starting with this new version change the default of BUILD_METIS to ON. This enables new Cholmod based orderings in the upcoming ceres-solver v2.2 release. Also build against OpenBLAS per default. OpenBLAS v0.3.21 provides a f2c-converted LAPACK v3.9.0 copy, which is used when building without a Fortran compiler. This enables us to have a C++ only build, making static libraries easier (no fortran runtime libs anymore).
- Loading branch information
1 parent
eb50493
commit ae41821
Showing
3 changed files
with
29 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
hunter_config(LAPACK | ||
VERSION ${HUNTER_LAPACK_VERSION} | ||
CMAKE_ARGS BUILD_SHARED_LIBS=ON | ||
CMAKE_ARGS | ||
BUILD_SHARED_LIBS=ON | ||
BUILD_METIS=ON | ||
WITH_OPENBLAS=OFF # we want to test generic LAPACK dynamic lib, not OpenBLAS | ||
) |