Skip to content

Commit

Permalink
Travis: Fix broken Eigen url. Update Eigen to 3.3.7.
Browse files Browse the repository at this point in the history
  • Loading branch information
phcerdan committed Aug 28, 2020
1 parent 8e35dc1 commit 5d9ce1a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .travis/install_eigen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ if [ "$TRAVIS_OS_NAME" == linux ];
then
cd "$HOME"

wget http://bitbucket.org/eigen/eigen/get/3.2.10.tar.bz2
bunzip2 3.2.10.tar.bz2
tar xf 3.2.10.tar
wget https://gitlab.com/libeigen/eigen/-/archive/3.3.7/eigen-3.3.7.tar.bz2
bunzip2 eigen-3.3.7.tar.bz2
tar xf eigen-3.3.7.tar

cd eigen-eigen-b9cd8366d4e8
cd Eigen
mkdir build ; cd build

cmake .. -DCMAKE_INSTALL_PREFIX="$DEPS_DIR"
Expand Down
2 changes: 2 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@
- Add CMake option `DGTAL_ENABLE_FLOATING_POINT_EXCEPTIONS` to control enabling
`feenableexcept` (only applies in Linux when in Debug mode).
(Pablo Hernandez-Cerdan, [#1489](https://github.com/DGtal-team/DGtal/pull/1489))
- Travis: Fix broken Eigen url. Update Eigen in travis to 3.3.7.
(Pablo Hernandez, [#1508](https://github.com/DGtal-team/DGtal/pull/1508))

- *Geometry*
- New Integral Invariant functor to retrieve the curvature tensor (principal curvature
Expand Down

0 comments on commit 5d9ce1a

Please sign in to comment.