Ubuntu 2 種安裝 Google gflags 的方法

本篇紀錄在 Ubuntu 下 2 種安裝 Google gflags 的方法,一種為 apt 安裝,第二種為下載原始碼編譯安裝

使用環境:
Ubuntu 16.04

https://github.com/gflags/gflags - commandline flags module for C++

方法1. 使用 distribution package 套件安裝

Ubuntu 16.04 的 apt 會安裝 gflags 2.1.2

1
sudo apt-get install libgflags-dev

可以用 apt-cache search gflags 搜尋到

方法2. 下載原始碼編譯與安裝

1
2
3
4
5
6
git clone https://github.com/gflags/gflags
cd gflags
mkdir -p build && cd build
cmake ..
make -j4
sudo make install

相關文章
Ubuntu 安裝 protobuf
Ubuntu 安裝 glog
Ubuntu 安裝 libevent
Ubuntu 編譯安裝 GLFW