Complie wrong according to the wiki tutorials

Get answers to all your basic programming questions. No Ogre questions, please!
Post Reply
mohusheng
Gnoblar
Posts: 2
Joined: Mon Jun 24, 2013 3:58 am

Complie wrong according to the wiki tutorials

Post 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?
dermont
Bugbear
Posts: 812
Joined: Thu Dec 09, 2004 2:51 am
x 42

Re: Complie wrong according to the wiki tutorials

Post by dermont »

You probably need to add -lboost_system to the libraries your linking against.
mohusheng
Gnoblar
Posts: 2
Joined: Mon Jun 24, 2013 3:58 am

Re: Complie wrong according to the wiki tutorials

Post by mohusheng »

dermont wrote:You probably need to add -lboost_system to the libraries your linking against.
Thanks.
User avatar
Kojack
OGRE Moderator
OGRE Moderator
Posts: 7157
Joined: Sun Jan 25, 2004 7:35 am
Location: Brisbane, Australia
x 534

Re: Complie wrong according to the wiki tutorials

Post 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.
Post Reply