Author Topic: The 24 august 2006 build is out.  (Read 17869 times)

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5491
Re: The 24 august 2006 build is out.
« Reply #15 on: August 25, 2006, 12:23:35 pm »
somethings wrong : I get crashes all the time now  :-( 

Code
Error occured on Friday, August 25, 2006 at 12:18:30.

D:\projects\CodeBlocks\src\devel\codeblocks.exe caused an Access Violation at location 77c46fa3 in module C:\WINDOWS\system32\msvcrt.dll Reading from location 06044000.

Registers:
eax=061c0a3a ebx=00410041 ecx=0005f28e edx=00000002 esi=06044000 edi=08713674
eip=77c46fa3 esp=03b2f718 ebp=03b2f720 iopl=0         nv up ei pl nz ac po nc
cs=001b  ss=0023  ds=0023  es=0023  fs=003b  gs=0000             efl=00010216

Call stack:
77C46FA3  C:\WINDOWS\system32\msvcrt.dll:77C46FA3  memcpy
100623E0  D:\projects\CodeBlocks\src\devel\wxmsw26u_gcc_cb.dll:100623E0  _onexit  d:/src/mingw/build/runtime/../../runtime/dllcrt1.c:183
100631A3  D:\projects\CodeBlocks\src\devel\wxmsw26u_gcc_cb.dll:100631A3  _onexit  d:/src/mingw/build/runtime/../../runtime/dllcrt1.c:183
65EC3335  D:\projects\CodeBlocks\src\devel\share\codeblocks\plugins\codecompletion.dll:65EC3335  BasicSearchTree::AddNode(wxString const&, unsigned)  D:/projects/CodeBlocks/src/plugins/codecompletion/parser/searchtree.cpp:698
65EC3FAD  D:\projects\CodeBlocks\src\devel\share\codeblocks\plugins\codecompletion.dll:65EC3FAD  BasicSearchTree::insert(wxString const&)  D:/projects/CodeBlocks/src/plugins/codecompletion/parser/searchtree.cpp:821
65EE07B6  D:\projects\CodeBlocks\src\devel\share\codeblocks\plugins\codecompletion.dll:65EE07B6  PluginSDKVersion
65EC8745  D:\projects\CodeBlocks\src\devel\share\codeblocks\plugins\codecompletion.dll:65EC8745  TokensTree::AddToken(Token*, int)  D:/projects/CodeBlocks/src/plugins/codecompletion/parser/token.cpp:525
65EC80B3  D:\projects\CodeBlocks\src\devel\share\codeblocks\plugins\codecompletion.dll:65EC80B3  TokensTree::insert(Token*)  D:/projects/CodeBlocks/src/plugins/codecompletion/parser/token.cpp:425
65EBAAEB  D:\projects\CodeBlocks\src\devel\share\codeblocks\plugins\codecompletion.dll:65EBAAEB  ParserThread::DoAddToken(TokenKind, wxString const&, int, wxString const&, bool, bool)  D:/projects/CodeBlocks/src/plugins/codecompletion/parser/parserthread.cpp:970
65EBD4BA  D:\projects\CodeBlocks\src\devel\share\codeblocks\plugins\codecompletion.dll:65EBD4BA  ParserThread::HandleTypedef()  D:/projects/CodeBlocks/src/plugins/codecompletion/parser/parserthread.cpp:1481
65EB8B4E  D:\projects\CodeBlocks\src\devel\share\codeblocks\plugins\codecompletion.dll:65EB8B4E  ParserThread::DoParse()  D:/projects/CodeBlocks/src/plugins/codecompletion/parser/parserthread.cpp:560
65EB8CEA  D:\projects\CodeBlocks\src\devel\share\codeblocks\plugins\codecompletion.dll:65EB8CEA  ParserThread::DoParse()  D:/projects/CodeBlocks/src/plugins/codecompletion/parser/parserthread.cpp:579
65EB8661  D:\projects\CodeBlocks\src\devel\share\codeblocks\plugins\codecompletion.dll:65EB8661  ParserThread::Parse()  D:/projects/CodeBlocks/src/plugins/codecompletion/parser/parserthread.cpp:472
65EE2081  D:\projects\CodeBlocks\src\devel\share\codeblocks\plugins\codecompletion.dll:65EE2081  PluginSDKVersion
617E76D2  D:\projects\CodeBlocks\src\devel\codeblocks.dll:617E76D2  cbThreadPool::cbWorkerThread::Entry()  D:/projects/CodeBlocks/src/sdk/cbthreadpool.cpp:223
1009FDB5  D:\projects\CodeBlocks\src\devel\wxmsw26u_gcc_cb.dll:1009FDB5  _onexit  d:/src/mingw/build/runtime/../../runtime/dllcrt1.c:183
77C3A3B0  C:\WINDOWS\system32\msvcrt.dll:77C3A3B0  _endthreadex
7C80B683  C:\WINDOWS\system32\kernel32.dll:7C80B683  GetModuleFileNameA



[EDIT] and reproducable : I launch CB, open my little test project -> nearly directly crash, with always the above RPT
« Last Edit: August 25, 2006, 12:25:57 pm by killerbot »

Offline nix_BB

  • Multiple posting newcomer
  • *
  • Posts: 33
Re: The 24 august 2006 build is out.
« Reply #16 on: August 25, 2006, 12:29:33 pm »
Just be patient, 1.5 weeks ago, code completion was totally broken, looks where it is now.

I think the C::B team has been doing an absolutely fabulous job the past few weeks :!: :!: :!:

C::B has become much more comfortable to work in - now if only someone could get to feature request 002528 and make me a very happy C::B groupie :wink:

nzoltan

  • Guest
Re: The 24 august 2006 build is out.
« Reply #17 on: August 25, 2006, 07:54:06 pm »
The cc does not support C language?

Example code (e.g.: test.c)
Code
struct astruct
{
int dummy;
};

int main()
{
struct astruct* xx;

        xx-> [no match]
}
BUT:

Code
int main()
{
astruct* xx;

        xx->[correct cc lookup]
}

sethjackson

  • Guest
Re: The 24 august 2006 build is out.
« Reply #18 on: August 25, 2006, 08:35:11 pm »
Hmm why do you need the extra struct declaration???
« Last Edit: August 25, 2006, 08:38:44 pm by sethjackson »

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5491
Re: The 24 august 2006 build is out.
« Reply #19 on: August 25, 2006, 08:37:07 pm »
C needs that :-(

but maybe in C99 it is no longer needed. Should check the standard ...

sethjackson

  • Guest
Re: The 24 august 2006 build is out.
« Reply #20 on: August 25, 2006, 08:38:36 pm »
C needs that :-(

but maybe in C99 it is no longer needed. Should check the standard ...

Hmm ok thanks. I didn't know that. :)