2011-10-06 3 views
0

J'ai construit et installé Ogre sur Debian avec Code :: Blocks. Ensuite, j'ai essayé de compiler une application tutoriel mais je reçois ces erreurs:Problème lors de la compilation de l'exemple de tutoriel OGRE.

obj/Debug/BaseApplication.o: In function `BaseApplication': 
/home/ver/projects/testogre/BaseApplication.cpp:34: undefined reference to `Ogre::StringUtil::BLANK' 

/home/ver/projects/testogre/BaseApplication.cpp:34: undefined reference to `Ogre::StringUtil::BLANK' 
obj/Debug/BaseApplication.o: In function `~BaseApplication': 

/home/ver/projects/testogre/BaseApplication.cpp:45: undefined reference to `Ogre::WindowEventUtilities::removeWindowEventListener(Ogre::RenderWindow*, Ogre::WindowEventListener*)' 

/home/ver/projects/testogre/BaseApplication.cpp:47: undefined reference to `Ogre::Root::~Root()' 
obj/Debug/BaseApplication.o: In function `BaseApplication::configure()': 

/home/ver/projects/testogre/BaseApplication.cpp:56: undefined reference to `Ogre::Root::showConfigDialog()' 

/home/ver/projects/testogre/BaseApplication.cpp:60: undefined reference to `Ogre::StringUtil::BLANK' 

/home/ver/projects/testogre/BaseApplication.cpp:60: undefined reference to `Ogre::Root::initialise(bool, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)' 

obj/Debug/BaseApplication.o: In function `BaseApplication::chooseSceneManager()': 
/home/ver/projects/testogre/BaseApplication.cpp:73: undefined reference to `Ogre::StringUtil::BLANK' 
/home/ver/projects/testogre/BaseApplication.cpp:73: undefined reference to `Ogre::Root::createSceneManager(unsigned short, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)' 

J'ai ajouté/usr/local/include/OGRE et/usr/local/lib/OGRE, mais cela n'a pas aidé. = (

Répondre

2

lorsque vous vous devez compiler un lien OgreMain bibliothèque à votre exécutable.

+0

http://stackoverflow.com/questions/6498368/ogre-g-compile-time-error – micrub

Questions connexes