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?
Complie wrong according to the wiki tutorials
-
- Gnoblar
- Posts: 2
- Joined: Mon Jun 24, 2013 3:58 am
-
- Bugbear
- Posts: 812
- Joined: Thu Dec 09, 2004 2:51 am
- x 42
Re: Complie wrong according to the wiki tutorials
You probably need to add -lboost_system to the libraries your linking against.
-
- Gnoblar
- Posts: 2
- Joined: Mon Jun 24, 2013 3:58 am
Re: Complie wrong according to the wiki tutorials
Thanks.dermont wrote:You probably need to add -lboost_system to the libraries your linking against.
-
- OGRE Moderator
- Posts: 7157
- Joined: Sun Jan 25, 2004 7:35 am
- Location: Brisbane, Australia
- x 535
Re: Complie wrong according to the wiki tutorials
The need for boost system only came in around boost 1.50, so that tutorial hasn't been updated for the current version yet.