News:

As usual while waiting for the next release - don't forget to check the nightly builds in the forum.

Main Menu

My Code::Blocks stopped working after SDL installation

Started by armlesscat, July 25, 2012, 11:20:14 PM

Previous topic - Next topic

armlesscat

being interested in game programming, I decided to install SDL onto code::blocks. After installation, I tried to compile a console application program and received this error message:



-------------- Build: Debug in TextBasedGame ---------------

Linking console executable: bin\Debug\TextBasedGame.exe
mingw32-g++.exe: C:\Program Files\CodeBlocks\MinGW\lib\libmingw32.a: No such file or directory
mingw32-g++.exe: C:\Program Files\CodeBlocks\MinGW\lib\libSDL.dll.a: No such file or directory
mingw32-g++.exe: C:\Program Files\CodeBlocks\MinGW\lib\libSDLmain.a: No such file or directory
Process terminated with status 1 (0 minutes, 0 seconds)
0 errors, 0 warnings

i have since uninstalled and installed code::blocks, but this error still appears.
Please help me, as I think code:blocks is an excellent compiler and would like to continue using it in the future.

jarod42


ollydbg

If some piece of memory should be reused, turn them to variables (or const variables).
If some piece of operations should be reused, turn them to functions.
If they happened together, then turn them to classes.