Ogre3d Local reference string coming out of nowhere

I am creating an ogre3d tutorial based on this setting http://www.ogre3d.org/wiki/index.php/SettingUpAnApplication#XCode

I followed all the steps as they say. It's perfectly composed.

But it happened on startup:

*-*-* OGRE Initialising
*-*-* Version 1.6.0 (Shoggoth)
Creating resource group Bootstrap
An exception has occurred: OGRE EXCEPTION(7:InternalErrorException): /Users/fmsf/Chalmers/SimulationEngines/testes/OgreProject/build/Debug/OgreProject.app//Users/fmsf/Chalmers/SimulationEngines/ogr3d/OgreSDK/Samples/Media/packs/OgreCore.zip - error whilst opening archive: Unable to read zip file. in ZipArchive::checkZzipError at /Users/steve/projects/Shoggoth_clean/ogre/Mac/Ogre/../../OgreMain/src/OgreZip.cpp (line 259)
*-*-* OGRE Shutdown

      

/Users/fmsf/...

belongs to me, but on this line, /Users/steve/projects...

I don't know where this is coming from as I have looked through the config files and cannot find it anywhere.

Does anyone know how to fix this? This is the very first time I use an ogre, so I feel a little lost here.

+1


source to share


1 answer


The unknown filename may simply be the compiled piece of code that is encountering the error; it points to a C ++ source file. According to this page , the lead developer for Ogre3d is called Steve Streeting ...



Check the archive, is it listable (c zip -v

) and otherwise sane? If so, there may be a conflict between versions and the Ogre3D zip reading code possibly.

+1


source







All Articles