5

コミュニティ、

Embarcadero で Log4cplus ライブラリをビルドして使用する際に、次の問題があります。まず、http: //sourceforge.net/p/log4cplus/wiki/Home/ からライブラリをダウンロードします。次に、ライブラリをビルドするディレクトリに移動し、cmake -G "Borland Makefiles" mypathtotherootomypreviousdownload と入力します。次に、ビルド ファイルが現在のディレクトリに書き込まれたと表示されます。ここで、MSYS sh.exe を開始し、make と入力します。これも機能します。ライブラリのさまざまな動作テスト(exeファイルとして)を含むbinフォルダーを取得します。この bin フォルダーには、dll log4cplusUD.dll もあります。ここで、src フォルダーに、対応する LIB log4cplusUD.lib も見つかります。もちろん、動的ライブラリを Embarcadero に静的にリンクする方法はよく知っています。しかし、コンパイルしようとすると

#pragma hdrstop
#pragma argsused

#ifdef _WIN32
#include <tchar.h>
#else
  typedef char _TCHAR;
  #define _tmain main
#endif

#include <stdio.h>

#include "log4cplus/logger.h"
#include "log4cplus/consoleappender.h"
#include "log4cplus/loglevel.h"
#include <log4cplus/loggingmacros.h>
#include <iomanip>

using namespace std;
using namespace log4cplus;



 int _tmain(int argc, _TCHAR* argv[]) 
{

    log4cplus::initialize ();
    SharedAppenderPtr append_1(new ConsoleAppender());
    append_1->setName(LOG4CPLUS_TEXT("First"));
    Logger::getRoot().addAppender(append_1);

    Logger root = Logger::getRoot();
    Logger test = Logger::getInstance(LOG4CPLUS_TEXT("test"));

    LOG4CPLUS_DEBUG(root,
                    "This is"
                    << " a reall"
                    << "y long message." << endl
                    << "Just testing it out" << endl
                    << "What do you think?");
    test.setLogLevel(NOT_SET_LOG_LEVEL);
    LOG4CPLUS_DEBUG(test, "This is a bool: " << true);
    LOG4CPLUS_INFO(test, "This is a char: " << 'x');
    LOG4CPLUS_INFO(test, "This is a short: " << static_cast<short>(-100));
    LOG4CPLUS_INFO(test, "This is a unsigned short: "
        << static_cast<unsigned short>(100));
    LOG4CPLUS_INFO(test, "This is a int: " << 1000);
    LOG4CPLUS_INFO(test, "This is a unsigned int: " << 1000u);
    LOG4CPLUS_INFO(test, "This is a long(hex): " << hex << 100000000l);
    LOG4CPLUS_INFO(test, "This is a unsigned long: " << 100000000ul);
    LOG4CPLUS_WARN(test, "This is a float: " << 1.2345f);
    LOG4CPLUS_ERROR(test,
                    "This is a double: "
                    << setprecision(15)
                    << 1.2345234234);
    LOG4CPLUS_FATAL(test,
                    "This is a long double: "
                    << setprecision(15)
                    << 123452342342.25L);
    LOG4CPLUS_WARN(test, "The following message is empty:");
    LOG4CPLUS_WARN(test, "");

    return 0;
}

外部シンボル log4cplus::Logger::getInstance が解決されず、リンカ エラーが発生します。

上記のコードは、sh.exe から make を実行した場合にコンパイルされて正常に実行されたテストの 1 つにすぎません。それで、私は何を間違っていますか?

また、上記の main.cpp と log4cplusUD.lib を次の CMakeLists.txt ファイルにリンクしようとしました

cmake_minimum_required (VERSION 2.6)
project (log4cplustest)

include_directories("C:/Users/fin/Software/log4cplus-1.2.0-rc3/log4cplus-1.2.0-rc3/include")
add_executable(log4cplustest main.cpp)
target_link_libraries(log4cplustest log4cplusUD)

しかし、同じリンカーエラーが発生します!

4

0 に答える 0