You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Building on Ubuntu 15.10 with gcc 5.2.1 end up in the following link error:
cybersecurity-miw/miw/.libs/libmiw.so: undefined reference to `boost::network::uri::detail::parse(__gnu_cxx::__normal_iterator<char const*, std::__cxx11::basic_string<char, std::char_traits, std::allocator > >, __gnu_cxx::__normal_iterator<char const*, std::__cxx11::basic_string<char, std::char_traits, std::allocator > >, boost::network::uri::detail::uri_parts<__gnu_cxx::__normal_iterator<char const*, std::__cxx11::basic_string<char, std::char_traits, std::allocator > > >&)'
The text was updated successfully, but these errors were encountered:
The built-in package libcppnetlib0 is wrongly built on Ubuntu 15.10 and the fix is to build our own version (don't do it from github repository as it appears to be messy, follow instructions below with version from https://launchpad.net/ubuntu/+source/cpp-netlib/0.11.1+dfsg1-4):
sudo apt-get purge libcppnetlib-dev
wget https://launchpad.net/ubuntu/+archive/primary/+files/cpp-netlib_0.11.1%2Bdfsg1.orig.tar.gz
tar xvzf cpp-netlib_0.11.1+dfsg1.orig.tar.gz
cd cpp-netlib-0.11.1-final
mkdir build
cd build
cmake ..
make
sudo make install
beniz
changed the title
Link error on cppnetlib-uri parse
Link error on cppnetlib-uri parse on Ubuntu 15.10
Dec 16, 2015
Building on Ubuntu 15.10 with gcc 5.2.1 end up in the following link error:
cybersecurity-miw/miw/.libs/libmiw.so: undefined reference to `boost::network::uri::detail::parse(__gnu_cxx::__normal_iterator<char const*, std::__cxx11::basic_string<char, std::char_traits, std::allocator > >, __gnu_cxx::__normal_iterator<char const*, std::__cxx11::basic_string<char, std::char_traits, std::allocator > >, boost::network::uri::detail::uri_parts<__gnu_cxx::__normal_iterator<char const*, std::__cxx11::basic_string<char, std::char_traits, std::allocator > > >&)'
The text was updated successfully, but these errors were encountered: