0

我有一个奇怪的问题,试图链接一个使用 lib4cplus 的个人库的简单代码。

带有主要代码的文件非常简单,不使用 log4cplus。我只在库中使用 lib4cplus。该库可以正确编译,但是当我将主文件与库链接时,它会出现类似的错误(loggers var 未在架构 x86_64 下定义)

g++ leer.cpp -c
ar r libfichero.a blowfish.o clase.o
g++ -o Class  leer.o -lm -lz -llog4cplus libfichero.a
Undefined symbols for architecture x86_64:
  "fichero::loggerFichero", referenced from:
      fichero::startLoggers()      in libfichero.a(clase.o)
      fichero::fichero()in libfichero.a(clase.o)
      fichero::fichero()in libfichero.a(clase.o)
  "fichero::errorLoggerFichero", referenced from:
      fichero::startLoggers()      in libfichero.a(clase.o)
      fichero::fichero()in libfichero.a(clase.o)
      fichero::fichero()in libfichero.a(clase.o)
ld: symbol(s) not found for architecture x86_64
collect2: ld returned 1 exit status
make[1]: *** [all] Error 1
make: *** [p21] Error 2

当我想定义我的私人记录器变量(ficheroLogger 和 errorFicheroLogger)时,就会出现错误。

那是我库的 cpp 文件中的代码。

bool fichero::startLoggers()
{
    // Aquí inico los loggers que voy a usar en la clase.
    loggerFichero = Logger::getInstance(LOG4CPLUS_TEXT("utils"));
    errorLoggerFichero = Logger::getInstance("BigFail");
}


// Método para definir los logs.
bool fichero::initLogFichero()
{
    cout << "Entering LOG Config part..." << endl;
    LogLog::getLogLog()->setInternalDebugging(true);
    Logger root = Logger::getRoot();

    // Load the properties
    PropertyConfigurator::doConfigure("ficheroLog4cplus.properties");

    Logger fileLog = Logger::getInstance(LOG4CPLUS_TEXT("filelogger"));

    // Log with INFO level
    LOG4CPLUS_INFO(fileLog, "Application startup");

    cout << "Exiting the main part()..." << endl;

    // Log with INFO level
    if (fileLog.isEnabledFor(INFO_LOG_LEVEL))
    {
        LOG4CPLUS_WARN(fileLog, "Application shutdown");
    }

    startLoggers();

    return true;
}

// Constructor y Destructor
fichero::fichero()
{
    nomFile = "file.txt";

    delimitador = "";
    hayDelimiatador = false;

    initLogFichero();

    LOG4CPLUS_WARN(loggerFichero, "Inicio normal");
    LOG4CPLUS_WARN(errorLoggerFichero, "Inicio error.");
}
4

1 回答 1

0

这看起来不像是 log4cplus 的问题。尝试重新调整命令行:

g++ -o Class leer.o libfichero.a -llog4cplus -lz -lm
于 2013-06-03T06:40:42.863 回答