commit | 74727f58290df9632b42aa5a2b0c1be11ab64ce4 | [log] [tgz] |
---|---|---|
author | Sameer Agarwal <sameeragarwal@google.com> | Thu Sep 19 10:03:03 2013 -0700 |
committer | Sameer Agarwal <sameeragarwal@google.com> | Thu Sep 19 16:24:56 2013 -0700 |
tree | d44fc5940a2cc128e79eaba8331ee88716389e72 | |
parent | 11bf5ffb96f73a5da375628fb9a447527627496e [diff] [blame] |
Fix two build errors. 1. Not set -march=native -mtune=native for GCC versions less than 4.2 2. Explicit cast in lapack.cc Thanks to Dustin Lang for reporting this. Change-Id: I71fbefa5f7db0188516f9f1dc044d7d5f374e2cd
diff --git a/internal/ceres/lapack.cc b/internal/ceres/lapack.cc index 73bfa69..e93e05f 100644 --- a/internal/ceres/lapack.cc +++ b/internal/ceres/lapack.cc
@@ -114,7 +114,7 @@ &info); CHECK_EQ(info, 0); - return work; + return static_cast<int>(work); #endif }