ubuntu install glog and gflags
2019-09-17 10:55:00
One-minute read
install glog
- Get the source code and change to it. e.g. cloning with git:
git clone git@github.com:google/glog.git
cd glog
- Run CMake to configure the build tree.
cmake -H. -Bbuild -G "Unix Makefiles"
note: To get the list of available generators (e.g. Visual Studio), use -G ""
- Afterwards, generated files can be used to compile the project.
cmake --build build
- Test the build software (optional).
cmake --build build --target test
- Install the built files (optional).
cmake --build build --target install
install gflags
download gflags
git clone https://github.com/gflags/gflags
compile & install 进入源码目录(即gflags文件夹)
cmake .
make -j 24
sudo make install