mirror of
https://github.com/ceres-solver/ceres-solver.git
synced 2026-08-29 16:40:38 +08:00
aefb8a8cf2
This change adds several of the pieces needed to build Ceres on Android. The port is incomplete, since GFlags doesn't build which causes the tests to not build. However, simple_bundle_adjuster builds and runs on the phone. Thanks to Scott Ettinger for the original version of the minimal GLog implementation which made this port possible. The Ceres logs go to the various Android logging levels, as documented in miniglog/glog/logging.h. To control the Android build, this adds a new CMake build option: -DBUILD_ANDROID=ON/OFF However, users may not want to set this manually, and should instead run the script found in android/build_android.sh. The script calls the NDK to make a standalone toolchain, downloads the android-cmake toolchain, then configures CMake to cross-compile Ceres to Android. Note: At time of writing, the android-cmake toolchain that the script downloads from Google Code doesn't work with the latest Jellybean NDK. It's possible to manually hack the toolchain file to make it build by setting the compiler version and manually setting the path to the STL includes. I don't yet have a patch suitable for upstreaming to http://android-cmake.googlecode.com. Change-Id: Icb615be203145e87413d6acd05883171a395499d
40 lines
1.9 KiB
C++
40 lines
1.9 KiB
C++
// Ceres Solver - A fast non-linear least squares minimizer
|
|
// Copyright 2012 Google Inc. All rights reserved.
|
|
// http://code.google.com/p/ceres-solver/
|
|
//
|
|
// Redistribution and use in source and binary forms, with or without
|
|
// modification, are permitted provided that the following conditions are met:
|
|
//
|
|
// * Redistributions of source code must retain the above copyright notice,
|
|
// this list of conditions and the following disclaimer.
|
|
// * Redistributions in binary form must reproduce the above copyright notice,
|
|
// this list of conditions and the following disclaimer in the documentation
|
|
// and/or other materials provided with the distribution.
|
|
// * Neither the name of Google Inc. nor the names of its contributors may be
|
|
// used to endorse or promote products derived from this software without
|
|
// specific prior written permission.
|
|
//
|
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
// POSSIBILITY OF SUCH DAMAGE.
|
|
//
|
|
// Author: keir@google.com (Keir Mierle)
|
|
|
|
#include "glog/logging.h"
|
|
|
|
namespace google {
|
|
|
|
// This is the set of log sinks. This must be in a separate library to ensure
|
|
// that there is only one instance of this across the entire program.
|
|
std::set<google::LogSink *> log_sinks_global;
|
|
|
|
} // namespace ceres
|