glob gflags

 

 

sudo apt-get remove libgflags-dev
sudo apt-get remove libgoogle-glog-dev

 

 

colmap 安装要求(源安装)

gflags == 2.2.2

glog == 0.4.0 

 

先安装gflags

# 安装glog 0.4.0版本要加上-fPIC

git clone https://github.com/gflags/gflags.git
cd gflags
mkdir build && cd build
cmake .. -DGFLAGS_NAMESPACE=google -DCMAKE_CXX_FLAGS=-fPIC ..
make -j4
sudo make install

 

安装glog

// git clone https://github.com/google/glog
// 下载0.4.0版本然后解压

cd glog
./autogen.sh
./configure
make -j8
sudo make install

 

 

如果glog安装了多个版本一定要检查有没有卸载干净

locate glog
# 如果能看到已经删除的包,就更新数据库
sudo updatedb
#再查看依稀
locate glog

 

上一篇:Java06面向对象01


下一篇:LeetCode 打卡 Day9 — 最长回文子串