20

I would understand this error message if I had not put the -lboost_system flag, but it is really here:

g++ -o build/myproject build/main/main.o -L/usr/local/boost/boost_1_52_0/boost/libs -L/usr/lib -Lbuild -L. -lboost_system -lboost_thread -lpthread -lboost_regex -lpq -lmylibrary
build/libmylibrary.a(library.o): In function `__static_initialization_and_destruction_0(int, int)':
library.cpp:(.text+0x25f): undefined reference to `boost::system::generic_category()'
library.cpp:(.text+0x269): undefined reference to `boost::system::generic_category()'
library.cpp:(.text+0x273): undefined reference to `boost::system::system_category()'

Do you have any idea what should I investigate to solve the problem ? (I use gcc 4.6.3)

6
  • 9
    try putting it at the end.
    – user1252091
    Commented Mar 7, 2013 at 20:17
  • 1
    nooo !? that works ! ! ! do you have any idea why ? Commented Mar 7, 2013 at 20:25
  • 3
    It's explained in the second part of this answer.
    – user1252091
    Commented Mar 7, 2013 at 20:26
  • 2
    Even easier, -DBOOST_SYSTEM_NO_DEPRECATED likely makes it unnecessary to link with boost_system at all (stackoverflow.com/a/30877725/1918193). Commented Jun 16, 2015 at 20:41
  • @MarcGlisse Still complains:/home/meir/boost_1_59_0/boost/thread/pthread/thread_data.hpp:278: undefined reference to `boost::this_thread::hiden::sleep_until(timespec const&)' Commented Dec 4, 2015 at 7:06

1 Answer 1

31

The order at which you link your libraries matters, in your case you have library.cpp that apparently uses the boost_system library

library.cpp:(.text+0x25f): undefined reference to `boost::system::generic_category()'
library.cpp:(.text+0x269): undefined reference to `boost::system::generic_category()'
library.cpp:(.text+0x273): undefined reference to `boost::system::system_category()'

To solve this you should move the boost_system library to the end of your link line

g++ -o build/myproject build/main/main.o -L/usr/local/boost/boost_1_52_0/boost/libs -L/usr/lib -Lbuild -L. -lboost_thread -lpthread -lboost_regex -lpq -lmylibrary **-lboost_system** 

Alternatively, build libmylibrary.so as a shared library and link to the boost_system library directly.

2
  • 3
    Saved two lives! (at least)
    – Ami Tavory
    Commented Oct 3, 2016 at 19:44
  • 2
    With boost 1.65.0, I was linking system before filesystem, and it worked well. With boost 1.68.0 I had to reverse the order. Note that the two lins were not compiled with the exact same script/jam files. Apparently, they can change the fact that system should be linked last or first...
    – jpo38
    Commented Jan 23, 2019 at 13:07

Not the answer you're looking for? Browse other questions tagged or ask your own question.