Author Topic: Used CodeBlocks for months before weird errors started appearing.  (Read 10044 times)

Offline jjpdn

  • Single posting newcomer
  • *
  • Posts: 5
I used CodeBlocks for a really long time actually and just suddenly, errors started appearing >:(!
First, my breakpoints stop working! ???
Then, I moved to Eclipse for a day. Got errors on that. :'(
So, I came back to codeblocks AND NOW IT ****ING SAYS THIS!
The procedure entry point__gxx+personality_v0 could not be located in the dynamic link library libstdc++-6.dll
What the heck does it mean and how do I fix it?
Oh, and I rebuilded one of my old working projects and I GOT 61 ERRORS AND 12 WARNING!
« Last Edit: January 31, 2013, 03:51:49 am by jjpdn »

Offline jarod42

  • Multiple posting newcomer
  • *
  • Posts: 87
Re: Used CodeBlocks for months before weird errors started appearing.
« Reply #1 on: January 31, 2013, 10:37:44 am »
It seems that you change compiler version...

And you didn't provide any version, C::B, gcc, OS...

Offline jjpdn

  • Single posting newcomer
  • *
  • Posts: 5
Re: Used CodeBlocks for months before weird errors started appearing.
« Reply #2 on: February 01, 2013, 04:11:25 am »
Code Blocks Version: 12.11
Mingw version: uh... how do you check that?
And what OS?

Offline BlueHazzard

  • Developer
  • Lives here!
  • *****
  • Posts: 3352
Re: Used CodeBlocks for months before weird errors started appearing.
« Reply #3 on: February 01, 2013, 03:02:15 pm »
Mingw version: type in cmd
Code
mingw32-gcc.exe --version
And what OS?
are you kidding?
http://goo.gl/4LhEi

Offline jjpdn

  • Single posting newcomer
  • *
  • Posts: 5
Re: Used CodeBlocks for months before weird errors started appearing.
« Reply #4 on: February 01, 2013, 11:33:55 pm »
 :-[ Oooooooh. Operating system (I hate acronyms).
Well, I'm on a Windows  7 and that command thing does not work.

Offline BlueHazzard

  • Developer
  • Lives here!
  • *****
  • Posts: 3352
Re: Used CodeBlocks for months before weird errors started appearing.
« Reply #5 on: February 02, 2013, 02:41:14 am »
I think you messed up the compiler...
Did you installed C::B with mingw or did you installed mingw independently?
When did the errors started? After installing eclipse?
Is there a C:\MinGW folder on your system? -> run "mingw32-gcc.exe --version" in C:\MinGW\bin

Oh, and I rebuilded one of my old working projects and I GOT 61 ERRORS AND 12 WARNING!
can you post some of the errors?

Offline jjpdn

  • Single posting newcomer
  • *
  • Posts: 5
Re: Used CodeBlocks for months before weird errors started appearing.
« Reply #6 on: February 02, 2013, 03:49:19 am »
Hey guys, I was able to get somebody to fix it (by changing compilers) (Well technically, I just got 491 more warnings but... yeah).
But I still want to use Mingw!
And there isn't a mingw version exe thing in my folder!
I installed C::B with mingw.
Errors started before installing eclipse.
Errors started after updating codeblocks.
The errors:
Well... after fixing... I'm not getting 61 errors anymore but just this:
wchar_t No such file or directory

Offline Jenna

  • Administrator
  • Lives here!
  • *****
  • Posts: 7252
Re: Used CodeBlocks for months before weird errors started appearing.
« Reply #7 on: February 02, 2013, 06:41:57 pm »
Well, I'm on a Windows  7 and that command thing does not work.
What exactly does not work ?
It still exists in win7 and even in win8.

Offline BlueHazzard

  • Developer
  • Lives here!
  • *****
  • Posts: 3352
Re: Used CodeBlocks for months before weird errors started appearing.
« Reply #8 on: February 02, 2013, 07:33:51 pm »
And there isn't a mingw version exe thing in my folder!
There is a mingw32-gcc.exe. If not, uninstall C::B and reinstall it.

If you can't use the cmd:
Click the "start" button -> type in the searchfield "cmd" -> run "cmd.exe" -> type in the black window "mingw32-gcc.exe --version" please copy and paste the output
if this is not working:
Click the "start" button -> type in the searchfield "cmd" -> run "cmd.exe" -> type in the black window "C:\MinGW\bin\mingw32-gcc.exe --version"

please post the following path from C::B:
Settings->Compiler->Toolchain executables->Compiler's Installation directory

Hey guys, I was able to get somebody to fix it (by changing compilers) (Well technically, I just got 491 more warnings but... yeah).
what did you changed? Reinstalled the Compiler? Used the compiler from Visual Studio?

Errors started after updating codeblocks.
Fresh install? Did you un-installed the old MinGW compiler?

The errors:
Well... after fixing... I'm not getting 61 errors anymore but just this:
wchar_t No such file or directory
please post always the full error log and if possible also the  respective Code. What was this "fixing"?

thanks!

Offline jjpdn

  • Single posting newcomer
  • *
  • Posts: 5
Re: Used CodeBlocks for months before weird errors started appearing.
« Reply #9 on: February 07, 2013, 05:57:40 am »
Hey everybody!
Well I reinstalled Code Blocks (again) and now I only get the 'Iostream not found thingy'. Isn't Mingw suppose to have iostream.h?
Here is the full error: ||=== test2222222, Debug ===|E:\stuff\projects\test2222222\main.cpp|1|fatal error: iostream: No such file or directory|||=== Build finished: 1 errors, 0 warnings (0 minutes, 0 seconds) ===|
Mingw version:
mingw32-gcc.exe <GCC> 4.7.0
Copyright <C> 2012 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
Yes, I used Visual c++ compiler.
S***! I don't think I did a fresh reinstall but I did the install thing...
Guess what! Now, it doesn't have that T_CHAR thing just the error listed above (OMG computers LOVE hating me).
To Jens, by command thing not working I was answering BlueHazzard.

Offline oBFusCATed

  • Developer
  • Lives here!
  • *****
  • Posts: 13406
    • Travis build status
Re: Used CodeBlocks for months before weird errors started appearing.
« Reply #10 on: February 07, 2013, 09:04:28 am »
jjpdn:
Your post is total mess. Why don't you use the enter key and [ code ] tags to separate the various pieces of information, so it is at least a bit readable.
(most of the time I ignore long posts)
[strangers don't send me private messages, I'll ignore them; post a topic in the forum, but first read the rules!]

Offline jarod42

  • Multiple posting newcomer
  • *
  • Posts: 87
Re: Used CodeBlocks for months before weird errors started appearing.
« Reply #11 on: February 07, 2013, 11:44:16 am »
[..]now I only get the 'Iostream not found thingy'. Isn't Mingw suppose to have iostream.h?
[..]
Yes, I used Visual c++ compiler.
MinGW is unrelated to vc compiler.

Check the configuration of your compiler inside C::B and its default include Directory...

Offline stahta01

  • Lives here!
  • ****
  • Posts: 7785
    • My Best Post
C Programmer working to learn more about C++ and Git.
On Windows 10 64 bit and Windows 11 64 bit.
--
When in doubt, read the CB WiKi FAQ. http://wiki.codeblocks.org