Hey Tobias, 2010/9/22 Tobias Wahl <[email protected]>: > I have some trouble compiling my Wt 3.1.5 on Ubuntu 10.04 64Bit. > > Linking CXX executable blog.wt > ../../src/http/libwthttp.so.3.1.5: undefined reference to > `boost::program_options::options_description::options_description(std::basic_string<char, > std::char_traits<char>, std::allocator<char> > const&, unsigned int, > unsigned int)' > ../../src/http/libwthttp.so.3.1.5: undefined reference to > `boost::program_options::validation_error::validation_error(boost::program_options::validation_error::kind_t, > std::basic_string<char, std::char_traits<char>, std::allocator<char> > > const&, std::basic_string<char, std::char_traits<char>, std::allocator<char> >> const&)'
Can you see what libraries libwthttp has been linked against: $ LD_LIBRARY_PATH=$PWD/install/lib/ ldd install/lib/libwthttp.so (assuming --prefix=$PWD/install) This should list the boost library also found in your install/lib folder: libboost_program_options.so.1.43.0 => .../install/lib/libboost_program_options.so.1.43.0 (0x00007f751ee87000) What version of CMake is installed on ubuntu 10 ? Regards, koen ------------------------------------------------------------------------------ Start uncovering the many advantages of virtual appliances and start using them to simplify application deployment and accelerate your shift to cloud computing. http://p.sf.net/sfu/novell-sfdev2dev _______________________________________________ witty-interest mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/witty-interest
