其他分享
首页 > 其他分享> > glob gflags

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

 

标签:gflags,make,sudo,0.4,glog,安装,glob
来源: https://www.cnblogs.com/xiaohuidi/p/15763916.html