(轉)Linux下編譯安裝log4cxx

來源:互聯網
上載者:User

標籤:style   class   blog   http   tar   ext   

Linux下編譯安裝log4cxx

一個項目的伺服器端在Linux平台下,用到了開源日誌庫log4cxx,這個庫是apache項目的一個子庫。功能很不錯。下面記錄下它的編譯和安裝過程。

log4cxx的官方是http://logging.apache.org/log4cxx/index.html ,我用的是0.10.0版本。

為了編譯它,還需要兩個輔助庫,apr,和apr-util,可以在這裡下載http://apr.apache.org/download.cgi ,我用的版本分別是apr-1.3.8.tar.gz 和apr-util-1.3.9.tar.gz 。

第一步安裝apr-1.3.8,順序不能錯,它必須首選安裝

$tar zxvf apr-1.3.8.tar.gz

$cd apr-1.3.8

$./configure --prefix=/usr/local

$make

$su root

$make install

然後安裝apr-util-1.3.9

$tar zxvf apr-util-1.3.9.tar.gz

$cd apr-util-1.3.9

$./configure --prefix=/usr/local --with-apr=/usr/local/apr

$make

$su root

$make install

configure選項 --with-apr=/usr/local/apr指定apr庫的位置

最後就可以安裝log4cxx了

$tar zxvf apache-log4cxx-0.10.0.tar.gz

$cd apache-log4cxx-0.10.0

$configure --prefix==/usr/local

$make

$su root

$make install

因為編譯成的是共用庫,最後還要設定下搜尋目錄,編輯~/.bashrc,添加下面兩行

LD_LIBRARY_PATH=/usr/local/lib

export LD_LIBRARY_PATH

OK,至此log4cxx就安裝完畢了。

最後寫個程式,測試下。

#include <log4cxx/logger.h>
#include <log4cxx/logstring.h>
#include <log4cxx/propertyconfigurator.h>

int main(int argc, char* argv[])
{
    using namespace log4cxx;

    // 讀取設定檔
    PropertyConfigurator::configure("log4cxx.cfg");

    // 建立兩個logger
    LoggerPtr logger1 = Logger::getLogger("TraceYourMama");
    LoggerPtr logger2 = Logger::getLogger("Patch");

    LOG4CXX_TRACE(logger1, "跟蹤");
    LOG4CXX_WARN(logger1, "警告");
    LOG4CXX_DEBUG(logger1, "調試");
    LOG4CXX_ASSERT(logger1, false, "斷言");
    LOG4CXX_FATAL(logger1, "致命");

    LOG4CXX_TRACE(logger2, "跟蹤");
    LOG4CXX_ERROR(logger2, "錯誤");
    return 0;
}

編譯連結

$g++ -o main main.cpp -llog4cxx

OK,打完手工。

 

 

最後安裝log4cxx的時候會有錯誤,缺少標頭檔,根據錯誤的檔案添加即可

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.