mirror of
https://github.com/ceres-solver/ceres-solver.git
synced 2026-08-29 16:40:38 +08:00
2b494cfb36
- Fix Homebrew Ruby errors by forcing brew update before install. - Remove use of custom Eigen 3.3.4 on Linux in favour of default Bionic 3.3.4 package. - Update Android NDK version to R20b and build for arm64-v8. - Fix erroneous string -> STRING in iOS toolchain file. Change-Id: I041c2a08b92b8307c12bd8967159beb6984e3c65
11 lines
320 B
Bash
Executable File
11 lines
320 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Stop processing on any error.
|
|
set -e
|
|
|
|
# Install default versions of standard dependencies that are new enough in 18.04
|
|
sudo apt-get install -y cmake
|
|
sudo apt-get install -y libatlas-base-dev libsuitesparse-dev
|
|
sudo apt-get install -y libgoogle-glog-dev libgflags-dev
|
|
sudo apt-get install -y libeigen3-dev
|