User forums > Nightly builds
The 16 January 2010 build (6088) is out.
blueshake:
--- Quote ---Hi, i have only 3 small question for you:
1. Did You see it? ( http://developer.berlios.de/bugs/?func=detailbug&bug_id=16647&group_id=5358 ), I guess - YES. Is "issues" is NOT reprodused in 6023 (latest SVN rev. w/o broken CC).
2. "gcc is working fine" Hmmm... CB designed and works only w. GCC? I guess - NOT.
3. Where I can see a fresh "Roadmap" or something similar.
CB is pretty good IDE, but last time... Something going wrong, I guess in developers team crept devs from M$ Wink
--- End quote ---
you may misunderstand my meaning.I just try to point out what the issue is.not mean to say cb is designed only for gcc.
Loaden:
I can confirm it, SVN 6089.
Please download this CB pack, and unpack it to D:\LoveDEV.
http://ppn.googlecode.com/files/LoveDEV.7z Contains VC9 compiler, I promise there is no virus, there is no malicious code.
if create a VC project, CPU is 50%.
--- Code: ---#include <iostream>
#include <windows.h>
#include <winbase.h>
using namespace std;
int main()
{
::
cout << "Hello world!" << endl;
return 0;
}
--- End code ---
[attachment deleted by admin]
ollydbg:
@all.
I find the bug why the parser get stuck when parsing the VC 2005 header files:
Here is the detailed report.
I found that the parser in CC will loop infinitively in parsing these code:
in the header file: vc\include\crtdefs.h, around line: 2043.
--- Code: ---typedef struct localeinfo_struct
{
pthreadlocinfo locinfo;
pthreadmbcinfo mbcinfo;
} _locale_tstruct, *_locale_t;
--- End code ---
and the bug seems in the void ParserThread::HandleTypedef(), there is a while loop in this function.
--- Code: ---void ParserThread::HandleTypedef(){
...
while(true)
{
token = m_Tokenizer.GetToken();
peek = m_Tokenizer.PeekToken();
......
}
}
--- End code ---
Unluckily, this is a infinit loop, and we can't break the loop. each time, we will get the token = "_locale_tstruct" and peek = "," , So, this is the REASON why many C::B users who use VC compilers will get their IDE hangs.
So, there is a logic error in handling typedef statement....
critic:
I think this is strange behaviour of CC:
--- Code: ---std::string().append("").append("").append(""). // and etc
--- End code ---
The more recurces I use the slower CC works. Why? After last point in the example I waited about 15 seconds. And so on.
Can it be eliminated?
critic:
Question to developers: can you change color of selected line text in window shown by Ctrl+Tab or use system setting?
In various system menus selected item highlighted by dark blue color (for example) and item's text font - by white (when item is not selected - font color is black). This issue appears because of that I can't see selected element :shock:
Navigation
[0] Message Index
[#] Next page
[*] Previous page
Go to full version