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.
ceres-solver: update to v2.2.0-p0 and fix examples
Update examples using SuiteSparse, building with OpenBLAS per default, ant one testing with dynamic-LAPACK package. On older GCC versions like 7.5 from Ubuntu 18.04 bionic fall back to older ceres-solver `2.1.0-p1` version, as `2.2.0` needs a fully C++17 compliant compiler. - Ubuntu 18.04 disablement: ceres-solver/ceres-solver@40c1a7e - C++17 requirement: ceres-solver/ceres-solver@1274743 Fix the `CUDA=OFF` option, as it was renamed to `USE_CUDA`. Still disable both.
- Loading branch information
1 parent
1897f17
commit f0a0744
Showing
5 changed files
with
24 additions
and
14 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
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,8 +1,6 @@ | ||
hunter_config(ceres-solver | ||
VERSION ${HUNTER_ceres-solver_VERSION} CMAKE_ARGS | ||
LAPACK=ON | ||
SUITESPARSE=ON | ||
CXSPARSE=ON # since 1.14.0-p1 | ||
# sine 2.1.0, SuiteSparse 5.4.0 per default builds against OpenBLAS as well | ||
# since 2.1.0, SuiteSparse 5.4.0 per default builds against OpenBLAS as well | ||
WITH_OPENBLAS=ON | ||
) |