Ogre3D (Need help) _ Urgent
Author |
Message |
QuantumPhysics
|
Posted: Sun Sep 23, 2012 1:10 pm Post subject: Ogre3D (Need help) _ Urgent |
|
|
About a week ago me and 2 of my friends came together to create an MMORPG. We are using Ogre3D, Direct 3D, PhysX, blender and ofcourse C++. I have been working on creating models for characters using blender for 97 consecutive hours now. During that time my friends created a website for our game and established BSD socket connection between the SQL and the client or whatever (e.g. register on the website - account becomes valid on the client). The real problem that I have here is this. We have all worked with Ogre3D in the past but never have we ran into this problem. I recently bought a new laptop. I installed the Ogre SDK and mingw with my code::blocks 10.05 on it. I set up all the builder options for my project. I have created a part of our world map. Incorporated the character model for testing and everything. It ran smoothly with no errors... When the console window opened - about to execute the code as it usually does I get a system error: The program can't start because libgcc_s_dw2-1.dll is missing from your computer I have worked with Ogre3D before as I mentioned but never have I ran into this error. Does anyone know how to fix this? I need to fix it urgently! |
|
|
|
|
|
Sponsor Sponsor
|
|
|
TerranceN
|
Posted: Sun Sep 23, 2012 5:10 pm Post subject: RE:Ogre3D (Need help) _ Urgent |
|
|
Did you even try googling the error? First two results were StackOverflow questions with the answers that you're seeking.
That error means that windows can't find the dll in question. You need to either edit your PATH environment variable so it contains the folder where that dll exists (C:\MinGW\bin for me) or you need to link the standard libraries statically by adding -static-libgcc and -static-libstdc++ to your linker options (not sure how it's done in Code::Blocks). |
|
|
|
|
|
QuantumPhysics
|
Posted: Sun Sep 23, 2012 5:14 pm Post subject: RE:Ogre3D (Need help) _ Urgent |
|
|
Yea, I tried googling the error. I use Linux so my browser did not give me those results. Thanks, solved it. |
|
|
|
|
|
|
|