Skip to content

Instantly share code, notes, and snippets.

@melvincabatuan
Created May 26, 2015 12:22
Show Gist options
  • Save melvincabatuan/bd241b0aa62dd8cfa7d6 to your computer and use it in GitHub Desktop.
Save melvincabatuan/bd241b0aa62dd8cfa7d6 to your computer and use it in GitHub Desktop.
Caffe Cmake
[root@cobalt build]# cmake ..
-- The C compiler identification is GNU 4.8.3
-- The CXX compiler identification is GNU 4.8.3
-- Check for working C compiler: /usr/bin/cc
-- Check for working C compiler: /usr/bin/cc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/c++
-- Check for working CXX compiler: /usr/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Boost version: 1.53.0
-- Found the following Boost libraries:
-- system
-- thread
-- Looking for include file pthread.h
-- Looking for include file pthread.h - found
-- Looking for pthread_create
-- Looking for pthread_create - not found
-- Looking for pthread_create in pthreads
-- Looking for pthread_create in pthreads - not found
-- Looking for pthread_create in pthread
-- Looking for pthread_create in pthread - found
-- Found Threads: TRUE
-- Found Glog: /usr/include
-- Found glog (include: /usr/include, library: /usr/lib64/libglog.so)
-- Found GFlags: /usr/include
-- Found gflags (include: /usr/include, library: /usr/lib64/libgflags.so)
-- Found PROTOBUF: /usr/lib64/libprotobuf.so
-- Found PROTOBUF Compiler: /usr/bin/protoc
-- Found HDF5: debug;/usr/lib64/libhdf5_hl.so;debug;/usr/lib64/libhdf5.so;optimized;/usr/lib64/libhdf5_hl.so;optimized;/usr/lib64/libhdf5.so
-- Found LMDB: /usr/include
-- Found lmdb (include: /usr/include, library: /usr/lib64/liblmdb.so)
-- Found LevelDB: /usr/include
-- Found LevelDB (include: /usr/include, library: /usr/lib64/libleveldb.so)
-- Found Snappy: /usr/include
-- Found Snappy (include: /usr/include, library: /usr/lib64/libsnappy.so)
-- CUDA is disabled. Building without it...
-- OpenCV found (/usr/local/share/OpenCV)
-- Found OpenBLAS libraries: /opt/openblas/lib/libopenblas.so
-- Found OpenBLAS include: /opt/openblas/include
-- Found PythonInterp: /root/anaconda/bin/python2.7 (found suitable version "2.7.9", minimum required is "2.7")
-- Could NOT find PythonLibs (missing: PYTHON_LIBRARIES PYTHON_INCLUDE_DIRS) (Required is at least version "2.7")
-- Found NumPy: /root/anaconda/lib/python2.7/site-packages/numpy/core/include (found suitable version "1.9.2", minimum required is "1.7.1")
-- NumPy ver. 1.9.2 found (include: /root/anaconda/lib/python2.7/site-packages/numpy/core/include)
-- Boost version: 1.53.0
-- Found the following Boost libraries:
-- python
-- Found Doxygen: /usr/bin/doxygen (found version "1.8.5")
-- Python interface is disabled or not all required dependecies found. Building without it...
-- Detected Doxygen OUTPUT_DIRECTORY: ./doxygen/
-- Found Git: /usr/bin/git (found version "1.8.3.1")
--
-- ******************* Caffe Configuration Summary *******************
-- General:
-- Version : <TODO> (Caffe doesn't declare its version in headers)
-- Git : rc2-214-g2c69258-dirty
-- System : Linux
-- C++ compiler : /usr/bin/c++
-- Release CXX flags : -O3 -DNDEBUG -fPIC -Wall -Wno-sign-compare -Wno-uninitialized
-- Debug CXX flags : -g -fPIC -Wall -Wno-sign-compare -Wno-uninitialized
-- Build type : Release
--
-- BUILD_SHARED_LIBS : ON
-- BUILD_python : ON
-- BUILD_matlab : OFF
-- BUILD_docs : ON
-- CPU_ONLY : ON
--
-- Dependencies:
-- BLAS : Yes (Open)
-- Boost : Yes (ver. 1.53)
-- glog : Yes
-- gflags : Yes
-- protobuf : Yes (ver. 2.5.0)
-- lmdb : Yes (ver. 0.9.13)
-- Snappy : Yes (ver. 1.1.0)
-- LevelDB : Yes (ver. 1.12)
-- OpenCV : Yes (ver. 3.0.0)
-- CUDA : No
--
-- Documentaion:
-- Doxygen : /usr/bin/doxygen (1.8.5)
-- config_file : /root/src/caffe/.Doxyfile
--
-- Install:
-- Install path : /root/src/caffe/build/install
--
-- Configuring done
-- Generating done
-- Build files have been written to: /root/src/caffe/build
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment