1. 程式人生 > >boost學習之安裝

boost學習之安裝

1.linux下的安裝方法

    相對於Windows來,Linux下的boost編譯簡單至極。沒有那麼多的可選編譯器,沒有那長的編譯時間,沒有那麼多的硬碟使用量,統一的inlude和lib目錄,你熟悉命令列,不使用IDE,不需要我那麼羅嗦的介紹怎麼配置EditPlus。

首先是下載boost,可以在此
http://sourceforge.net/projects/boost
尋找一個合適的版本。比如我下載的是boost_1_33_1.tar.gz,解壓到/opt。

tar xzvf boost_1_33_1.tar.gz -C/opt

提醒:做這些事情的時候你需要有root許可權。

進入boost目錄:

cd /opt/boost_1_33_1

首先我們要編譯bjam:

cd tools/build/jam_src/ ./build.sh

很快編譯結束,預設情況下,bjam會被複制到/usr/local/bin/bjam。

現在你可以使用bjam編譯boost了。

cd ../../.. bjam -sTOOLS=gcc install

編譯時間不會如windows那麼長久,在我的電腦上編譯了大約40分鐘。你可以在前後使用df命令檢查下磁碟使用,在我的電腦上,編譯boost花費了500M的空間。

使用install會把標頭檔案複製到/usr/local/include/boost-1_33_1中,把生成的lib複製到/usr/local/lib中。這些完成之後,記得要使用ldconfig來更新動態連結庫。

在測試兩個例子之前,我們先設定幾個環境變數。

BOOST_ROOT=/opt/boost_1_33_1 BOOST_INCLUDE=/usr/local/include/boost-1_33_1 BOOST_LIB=/usr/local/lib

為了使其能夠在登入時自動匯入,你可以寫一個指令碼:
#!/bin/sh #boost settings BOOST_ROOT=/opt/boost_1_33_1 BOOST_INCLUDE=/usr/local/include/boost-1_33_1 BOOST_LIB=/usr/local/lib export BOOST_ROOT BOOST_INCLUDE BOOST_LIB

將其儲存為/etc/profile.d/boost.sh,並使用chmod a+x boost.sh設定執行許可權。

現在我們可以寫兩段程式碼來測試了。

第一個測試檔案是lex.cpp:

#include <boost/lexical_cast.hpp> #include <iostream> int main() { using boost::lexical_cast; int a = lexical_cast<int>("123"); double b = lexical_cast<double>("123.12"); std::cout<<a<<std::endl; std::cout<<b<<std::endl; return 0; }

編譯:
g++ lex.cpp -I$BOOST_ROOT -o lex

執行:
./lex

輸出:
123 123.12

你可以將$BOOST_ROOT改為$BOOST_INCLUDE,如果你沒有設定環境變數,可以改為/opt/boost_1_33_1或者/usr/local/include/boost-1_33_1。

我們的第二個例子是re.cpp:

#include <iostream> #include <string> #include <boost/regex.hpp> int main() { std::string s = "who,lives:in-a,pineapple under the sea?"; boost::regex re(",|:|-|\\s+"); boost::sregex_token_iterator p(s.begin( ), s.end( ), re, -1); boost::sregex_token_iterator end; while (p != end) std::cout << *p++ << '\n'; }

編譯:
g++ re.cpp -I$BOOST_ROOT -lboost_regex-gcc -o re

執行:
./re

輸出:
who lives in a pineapple under the sea?

這裡要使用-l指定了連結庫。

現在boost的基本安裝配置已經完成,但是我們可以再改進下。

如果不想每次都指定boost標頭檔案目錄,可以將其link到/usr/include中:

ln -s /opt/boost_1_33_1/boost /usr/include/boost

或者:

ln -s /usr/local/include/boost-1_33_1/boost /usr/include/boost

如果你依然嫌boost編譯後佔用的空間太大,可以在boost目錄下使用bjam clean:
cd /opt/boost_1_33_1 bjam -sTOOLS=gcc clean

這個命令會清除編譯時的中間檔案,/usr/local/lib下帶版本號的boost libs,和/usr/local/include下的boost標頭檔案。但是同時節省了幾百M的硬碟空間。

所以如果你使用了clean,記得將BOOST_INCLUDE更為BOOST_ROOT(/opt/boost_1_33_1),將 /usr/include/boost link到/opt/boost_1_33_1/boost,再有就是編譯連結時的boost lib不要帶版本號。

如果你覺得編譯時手動連結敲那麼長的名字比較麻煩,可以使用指令碼來自動尋找連結:

#!/usr/bin/python import os import sys import re BOOST_ROOT = os.getenv('BOOST_ROOT') BOOST_LIB = os.getenv('BOOST_LIB') #BOOST_ROOT = '/opt/boost_1_33_1' #BOOST_LIB = '/usr/local/lib' def getlibs(): alls = os.listdir(BOOST_LIB) libpattern = re.compile(r'^libboost_([^-]+)-gcc') libs = {} for lib in alls: m = libpattern.match(lib) if m: libs[m.group(1).lower()] = 1 return libs pattern = re.compile(r'^\s*#include\s*<\s*boost/(.+)\.(h|hpp)\s*>') libs = getlibs() libskeys = libs.keys() includes = {} ENV = os.environ ARGV = sys.argv[1:] files = ARGV if len(files) == 0: sys.exit() for f in files: if f.lower().endswith('.cpp'): fp = open(f, 'r') lines = fp.readlines() for ln in lines: m = pattern.match(ln) if m: libname = m.group(1).lower() if libname in libskeys: includes[libname] = 1 libline = ' '.join(map(lambda lib: '-lboost_'+lib+'-gcc', includes.keys())) obj = ARGV[0] obj = obj[:len(obj)-4] #cmd = 'g++ %s -I%s %s -o %s' % (' '.join(files), BOOST_ROOT, libline, obj) cmd = 'g++ %s %s -o %s' % (' '.join(files), libline, obj) print cmd os.system(cmd)

將這段程式碼寫進/usr/local/bin/gccboost,賦予執行許可權。

使用方法:
gccboost lex.cpp gccboost re.cpp

注意:使用此命令假設boost標頭檔案在/usr/include中,如果假設不成立,請自行修改指令碼此行:
cmd = 'g++ %s %s -o %s' % (' '.join(files), libline, obj)

為之前的註釋行:
cmd = 'g++ %s -I%s %s -o %s' % (' '.join(files), BOOST_ROOT, libline, obj)

如若BOOST_ROOT和BOOST_LIB環境變數不存在,修改下面兩行程式碼:
BOOST_ROOT = os.getenv('BOOST_ROOT') BOOST_LIB = os.getenv('BOOST_LIB')

為之後註釋行:
BOOST_ROOT = '/opt/boost_1_33_1' BOOST_LIB = '/usr/local/lib'

另外,gccboost將會自動修改輸出的檔名為*.cpp的檔名(如lex.cpp將輸出lex),如果不需要,請將下面的程式碼:
cmd = 'g++ %s %s -o %s' % (' '.join(files), libline, obj)

改為:
cmd = 'g++ %s %s' % (' '.join(files), libline)


Boost安裝歷程至此基本結束。

2.windows下的安裝

一、 下載boost

1、boostpro

2、boost.org(本文下載方式)

boost_1_51_0.zip 下載並解壓到C盤根資料夾

二、編譯boost

1、生成生命行程式

  執行bootstrap.bat

2、編譯

  執行b2.exe,完成後顯示:

The Boost C++ Libraries were successfully built!
The following directory should be added to compiler include paths:
    C:/boost_1_51_0
The following directory should be added to linker library paths:
    C:\boost_1_51_0\stage\lib

三、使用boost

1、建立一個win32 console

2、引用bootst

  C/C++ -> Additional Include Directories: C:\boost_1_51_0
  Linker-> Additional Library Directories: C:\boost_1_51_0\stage\lib
  Linker->Input->Additional Dependencies :libboost_signals-vc110-mt-gd-1_51.lib;libboost_regex-vc110-mt-gd-1_51.lib;

3、Code如下:

?
#include "stdafx.h" #include <boost/regex.hpp> #include <boost/signals.hpp> #include <boost/lambda/lambda.hpp> #include <iostream> #include <cassert> struct print_sum { void operator()(int x, int y) const { std::cout << x+y << std::endl; } }; struct print_product { void operator()(int x, int y) const { std::cout << x*y << std::endl; } }; int _tmain(int argc, _TCHAR* argv[]) { boost::signal2<void, int, int, boost::last_value<void>, std::string> sig; sig.connect(print_sum()); sig.connect(print_product()); sig(3, 5); std::string line;     boost::regex pat( "^Subject: (Re: |Aw: )*(.*)" );    while (std::cin) {         std::getline(std::cin, line);         boost::smatch matches;        if (boost::regex_match(line, matches, pat))  std::cout << matches[2] << std::endl;     } return 0; }

 示例程式在vs2012下通過,輸出:

8
15