Page 1 of 1

Complie wrong according to the wiki tutorials

Posted: Mon Jun 24, 2013 4:50 am
by mohusheng
I complied sources in Archlinux, and boost's version is 1.53.0-2.

wiki tutorial link:

http://www.ogre3d.org/tikiwiki/tiki-ind ... ls+-+Linux

Bash output error message:

/usr/bin/ld: OgreApp-BaseApplication.o: undefined reference to symbol '_ZN5boost6system15system_categoryEv'
/usr/bin/ld: note: '_ZN5boost6system15system_categoryEv' is defined in DSO /usr/lib/libboost_system.so.1.53.0 so try adding it to the linker command line
/usr/lib/libboost_system.so.1.53.0: could not read symbols: Invalid operation
collect2: error: ld returned 1 exit status
make[1]: *** [OgreApp] Error 1
make[1]: Leaving directory `/home/sheng/shengEngine'
make: *** [all] Error 2

How to fix it?

Re: Complie wrong according to the wiki tutorials

Posted: Mon Jun 24, 2013 9:54 am
by dermont
You probably need to add -lboost_system to the libraries your linking against.

Re: Complie wrong according to the wiki tutorials

Posted: Mon Jun 24, 2013 10:08 am
by mohusheng
dermont wrote:You probably need to add -lboost_system to the libraries your linking against.
Thanks.

Re: Complie wrong according to the wiki tutorials

Posted: Tue Jun 25, 2013 2:19 am
by Kojack
The need for boost system only came in around boost 1.50, so that tutorial hasn't been updated for the current version yet.