Author Topic: Code::block 10.05 problems  (Read 4798 times)

Offline youbob12

  • Single posting newcomer
  • *
  • Posts: 4
Code::block 10.05 problems
« on: March 20, 2011, 02:28:49 am »
Ok, so this little error was the first thing to give me troubles in my building of my cpp files.

Code
mingw32-g++.exe: C:\Program Files\CodeBlocks\MinGW\lib\libmingwthrd_old.a: No such file or directory
mingw32-g++.exe: C:\Program Files\CodeBlocks\MinGW\lib\libpthread.dll.a: No such file or directory
Process terminated with status 1 (0 minutes, 0 seconds)
So no big deal, I linked in the files and it compiled/build wonderfully.
When I clicked on the exe file, or try to run it, I got this
Quote
"Missing msvcr70.dll "
it's some type of Runtime file.
So I said, "ok no big deal....". I found it on google right away and I put it in my system32 folder.
Ran the exe file and got this Huge debuging error message.


Quote
AppName: cat.exe    AppVer: 0.0.0.0    ModName: ntdll.dll
ModVer: 5.1.2600.6055    Offset: 00019af2


It Crashed for some reason....

I would like to know how can I fix it. I run a Windows XP home edition, 32 OS.
I'm thinking it's just something I need to reinstall.

Any idea?

Also I'm getting Not finding listdc++6.dll on other exe files

Thank you for your time...

Offline ollydbg

  • Developer
  • Lives here!
  • *****
  • Posts: 5915
  • OpenCV and Robotics
    • Chinese OpenCV forum moderator
Re: Code::block 10.05 problems
« Reply #1 on: March 20, 2011, 03:16:26 am »
Quote
Ran the exe file and got this Huge debugging error message.
I think you exe file's source code may has bugs. So, this is definitely NOT "Code::block 10.05 problems"
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.

Offline youbob12

  • Single posting newcomer
  • *
  • Posts: 4
Re: Code::block 10.05 problems
« Reply #2 on: March 20, 2011, 03:19:34 am »
well that's great to here :? Where can I got to get this issue fix?

Offline ollydbg

  • Developer
  • Lives here!
  • *****
  • Posts: 5915
  • OpenCV and Robotics
    • Chinese OpenCV forum moderator
Re: Code::block 10.05 problems
« Reply #3 on: March 20, 2011, 03:23:38 am »
well that's great to here :? Where can I got to get this issue fix?
So, for a specific programming question, go to a forum that is specific to your problem. Codeblocks is only a IDE, it can't be your god to solve everything for you.

The most thing is to identify your problem. :D Or try to debug it.
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.

Offline youbob12

  • Single posting newcomer
  • *
  • Posts: 4
Re: Code::block 10.05 problems
« Reply #4 on: March 20, 2011, 03:26:31 am »
Yeah that's the thing I need to find out what's the specific problem. A google search word or and Idea where to look is all I need

Thanks