程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> Delphi >> centos 7.2 gflags glog protobuf gperftools 配置,centosgflags

centos 7.2 gflags glog protobuf gperftools 配置,centosgflags

編輯:Delphi

centos 7.2 gflags glog protobuf gperftools 配置,centosgflags


一、libunwind 安裝 (64位系統需要)
1、libunwind-1.1.tar.gz
2、安裝步驟
$ tar xzf 1、libunwind-$version-source.tar.gz
$ cd 1、libunwind-$version
$ ./configure && make && make install

二、gflags 安裝
1、gflags-2.1.2.tar.gz
2、安裝步驟
$ tar xzf gflags-$version-source.tar.gz
$ cd gflags-$version
$ mkdir build && cd build
$ ccmake ..

- Press 'c' to configure the build system and 'e' to ignore warnings.
- Set CMAKE_INSTALL_PREFIX and other CMake variables and options.
- Continue pressing 'c' until the option 'g' is available.
- Then press 'g' to generate the configuration files for GNU Make.

$ make
$ make test (optional)
$ make install (optional)

3、如果要安裝glog 則ccmake 時需要配置加入-fPIC,否則glog 編譯不過,會提示gflags.a -fPIC相關錯誤
CMAKE_CXX_FLAGS -fPIC
CMAKE_C_FLAGS -fPIC

三、glog 安裝
1、glog-0.3.4.tar.gz
2、安裝步驟
$ tar xzf glog-$version-source.tar.gz
$ cd glog-$version
$ ./configure && make && make install

四、protobuf 安裝
1、protobuf-2.6.1.zip
2、安裝步驟
$ unzip protobuf-$version-source.zip
$ cd protobuf-$version
$ ./configure && make && make install

五、gperftools 安裝
1、gperftools-2.5.tar.gz
2、安裝步驟
$ tar xzf gperftools-$version-source.tar.gz
$ cd gperftools-$version
$ ./configure && make && make install

六、scons 安裝 (和cmake 類似功能,使用python語言)
1、scons-2.4.1-1.noarch.rpm
2、安裝步驟(python已安裝)
$ rpm -ivh scons-2.4.1-1.noarch.rpm

七、其他
/etc/ld.so.conf中加入/usr/local/lib這一行,保存之後,再運行:/sbin/ldconfig –v

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved