2

我使用 ubuntu 10.04 和 libboost1.40。

ls -l /usr/lib | grep boost_pro
    -rw-r--r--  1 root root   640800 2010-04-01 05:19 libboost_program_options.a
    lrwxrwxrwx  1 root root       26 2011-11-03 22:40 libboost_program_options-mt.a ->                  libboost_program_options.a
    lrwxrwxrwx  1 root root       34 2011-11-03 22:40 libboost_program_options-mt.so ->                libboost_program_options.so.1.40.0
    lrwxrwxrwx  1 root root       34 2011-11-03 22:40 libboost_program_options.so ->    libboost_program_options.so.1.40.0
    -rw-r--r--  1 root root   289336 2010-04-01 05:19 libboost_program_options.so.1.40.0

这是 main.cpp(仅用于测试)

     #include <string> 
#include <iostream> 
#include <boost/date_time/gregorian/gregorian.hpp> 
#include <boost/date_time/posix_time/posix_time.hpp>
#include <boost/program_options/options_description.hpp>
//--------------------------------------------------------------------- 
int main(int argc,char** argv) 
{ 
 boost::gregorian::date now(boost::gregorian::day_clock::local_day());
 //is works fine 
 std::cout<<boost::gregorian::to_iso_string(now)<<std::endl;
 boost::program_options::options_description a; //but here i get an error when the                constructor have started
 return 0; 
 }

    g++ -o main -lboost_date_time -lboost_program_options   main.cpp && ./main
    /tmp/cc3RJHsG.o: In function `main':
    main.cpp:(.text+0x81): undefined reference to   `boost::program_options::options_description::options_description(unsigned int, unsigned     int)'
    collect2: ld returned 1 exit status

我做

    find /usr/include/ -name "*description*"
/usr/include/boost/program_options/options_description.hpp

而且只有一个原型。有任何想法吗?

4

1 回答 1

6

显然,有一个带有两个unsigned ints 的双参数构造函数的原型,两者都有一个默认值。因此,这成为默认构造函数,在a创建时使用。这是这个构造函数

  options_description(unsigned = m_default_line_length, 
                      unsigned = m_default_line_length/2);

但是,这是在 Boost 1.42 中添加的,并且在您的版本 1.40中不存在。

所以我认为你以某种方式设法用更新的版本覆盖了 Ubuntu 为你安装的头文件,但没有更新/usr/lib. 尝试卸载并重新安装该软件包。

如果您需要比 1.40 更新的 Boost,请升级您的 Ubuntu,或卸载所有与 Boost 相关的软件包并/usr/local. 包管理器会远离/usr/local.

于 2011-11-03T20:34:19.980 回答