Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

undefined reference to boost::system::system_category() when compiling

Tags:

c++

boost

I'm trying to compile a program on Ubuntu 11.10 that uses the Boost libraries. I have the 1.46-dev Boost libraries from the Ubuntu Repository installed, but I get an error when compiling the program.

undefined reference to boost::system::system_category()

What is it that I do wrong?

like image 988
user1049697 Avatar asked Mar 15 '12 16:03

user1049697


People also ask

How do you resolve an undefined reference?

The error: undefined reference to function show() has appeared on the terminal shell as predicted. To solve this error, simply open the file and make the name of a function the same in its function definition and function call. So, we used to show(), i.e., small case names to go further.

What causes undefined reference?

An “Undefined Reference” error occurs when we have a reference to object name (class, function, variable, etc.) in our program and the linker cannot find its definition when it tries to search for it in all the linked object files and libraries.


1 Answers

The boost library you are using depends on the boost_system library. (Not all of them do.)

Assuming you use gcc, try adding -lboost_system to your compiler command line in order to link against that library.

like image 60
hc_ Avatar answered Oct 21 '22 13:10

hc_