Code::Blocks Forums

User forums => Nightly builds => Topic started by: killerbot on February 11, 2007, 05:53:58 pm

Title: The 11 february 2007 build is out.
Post by: killerbot on February 11, 2007, 05:53:58 pm
Get quick announcements through the RSS feed http://www.codeblocks.org/nightly/CodeBlock_RSS.xml

A link to the unicode windows wxWidget dll for Code::Blocks : http://prdownload.berlios.de/codeblocks/wxmsw26u_gcc_cb_wx2.6.3p2.7z

To fix the menu alignment bug introduced in wx 2.6.3 [windows only bug] we have patched wx ourselves, and that results in the following alternative dll : http://prdownload.berlios.de/codeblocks/wxmsw26u_gcc_cb_wx2.6.3p2AndCbPatch_version3.7z

For those who might need this one (when no MingW installed on your system) : the mingw10m.dll : http://prdownload.berlios.de/codeblocks/mingwm10.7z

For support of ansi builds, a link to the ansi windows wxWidget dll for Code::Blocks : http://prdownload.berlios.de/codeblocks/wxmsw26_gcc_cb_wx2.6.3p2.7z

The 11 February 2007 build is out.
  - Windows : http://prdownload.berlios.de/codeblocks/CB_20070211_rev3592_win32.7z
  - Linux :
         http://prdownload.berlios.de/codeblocks/CB_20070211_rev3592_Ubuntu6.xx.deb
         http://prdownload.berlios.de/codeblocks/CB_20070211_rev3592_suse100-102.i586.rpm
         http://prdownload.berlios.de/codeblocks/CB_20070211_rev3592_fc4+5.i586.rpm (not yet)


Resolved Fixed:


Regressions/Confirmed/Annoying/Common bugs:


Title: Re: The 11 february 2007 build is out.
Post by: magisu on February 12, 2007, 03:56:15 am
well, I have a problem. When I modified a class in a namespace, just say NAME::CLS, the CLS in symbol viewer is hidden. I have to re-collapse and expand the NAME namespace to see it. Is it a bug?
Title: Re: The 11 february 2007 build is out.
Post by: noir_mxj on February 12, 2007, 09:26:12 am
One problem on debug.
The items in build messages can not be double clicked and jump into code when the path of project includes chinese characters. The file path is incorrect.
When the path in english,it works perfectly...

Thanks:)


Title: Re: The 11 february 2007 build is out.
Post by: Marenz on February 12, 2007, 03:38:25 pm
Feature Request / Bug discover:

When debugging an app and you want e.g. watch a variable that is inside a struct or class and you use tmp.loc.X in your code to access it, it adds the Watch X which is not found. i edit the watch then and change it to tmp.loc.X then it works.

it would be very nice if cb would automatically adds tmp.loc.X instead of X

--Ano
Title: Re: The 11 february 2007 build is out.
Post by: Silverling on February 12, 2007, 03:39:03 pm
Does C::B have a disassembler? Or some tool to edit the compiled executable in assembley style? Even if not to edit, does it have a viewer? That would be very useful to have that feature on C::B to reduce dependency on external editors for assembley level optimizations. Anyway, just a rant... B::B is good as it is.
Title: Re: The 11 february 2007 build is out.
Post by: indigo0086 on February 12, 2007, 03:43:40 pm
Yes, go to debug->debugging windows->Dissassembly

To address a fix request.
There's still a problem with the "export->As RTF..." function.  It doesn't output anything after an escape character '\' up until a delimiter like ' " or ' '.  For example

Code
while(*end != '\"')
//and
cout << "\"Hello" << world  << "\""<< endl;

becomes
Code
while(*end != '')
//and
cout << "Hello" << world  << ""<< endl;

it works for the other two formats, but rtf is more formattable.
Title: Re: The 11 february 2007 build is out.
Post by: Marenz on February 12, 2007, 04:26:13 pm
@ Silverling: When you debug your application, then you can also disassembler it, at least here under linux it works. just press the "Next Instruction" Button.

--Ano
Title: Re: The 11 february 2007 build is out.
Post by: Silverling on February 12, 2007, 07:31:30 pm
debug->debugging windows->Dissassembly

@ Silverling: When you debug your application, then you can also disassembler it, at least here under linux it works. just press the "Next Instruction" Button.

--Ano

Thanks, and sorry. I didn't notice because I had de-activated the debug plugin and didn't bother going to the "debug" menu.
Now I start the debugging session (Start F8) and windbg claims that some options are invalid (nx, fullname, quiet by that order) :( One more thing: does the disassembler allow me to edit the ASM code?

Lastly, I'm coding in D, using DMD.
Title: Re: The 11 february 2007 build is out.
Post by: ir0nk0ala on February 12, 2007, 11:02:27 pm
I may have found a bug:
I started debugging a small project (one file) with one breakpoint, but when i tried to stop, C::B didn't respond. I tried continuing, going to the next line, etc., but nothing worked. I finally closed the project, the debugger terminated, and now C::B is locked up. I'm running C::B under Ubuntu 6.10, rev 3592, GNU gdb 6.4.90-debian. I'm not sure if this is a bug or just a mistake of my own  :(. Any ideas?

UPDATE:
When I ended the frozen C::B process and started it back up, it gave me the message "Deleted stale lock file" and told me the location. Relevant..?
Title: Re: The 11 february 2007 build is out.
Post by: Pecan on February 12, 2007, 11:04:36 pm
I may have found a bug:
I started debugging a small project (one file) with one breakpoint, but when i tried to stop, C::B didn't respond. I tried continuing, going to the next line, etc., but nothing worked. I finally closed the project, the debugger terminated, and now C::B is locked up. I'm running C::B under Ubuntu 6.10, rev 3592, GNU gdb 6.4.90-debian. I'm not sure if this is a bug or just a mistake of my own  :(. Any ideas?

Bug. It happens to me 10-15 times a day. I'm trying to trace some of 'em down.
Open a terminal. Do a ps x, then killall for the program you were debugging, then killall codeblocks.

Title: Re: The 11 february 2007 build is out.
Post by: ir0nk0ala on February 12, 2007, 11:09:27 pm
Thank you very much  :D. I remember there being problems with only setting one breakpoint before, but this is the first time I've experienced this particular bug. I'll update if I find anything else.
Title: Re: The 11 february 2007 build is out.
Post by: indigo0086 on February 13, 2007, 12:52:25 am
nm.
Title: Re: The 11 february 2007 build is out.
Post by: steveth45 on February 13, 2007, 08:06:03 am
If anyone cares, the Build Target drop down box disappearing issue is still present in the SUSE build with openSUSE 10.2.  Otherwise it seems to be working fine.  As a side note, the code profiler plugin is top notch, kudos to the C::B devs for that.
Title: Re: The 11 february 2007 build is out.
Post by: indigo0086 on February 13, 2007, 04:11:17 pm
I just noticed the double declaration in the symbol browser lits two member functions regardless of whether one has parameter names or not.
Title: Re: The 11 february 2007 build is out.
Post by: Jan van den Borst on February 14, 2007, 10:55:34 am
LS,
When I right click on a project file and select "Build file "in the context-menu CB crashes.
Any idea?

Jan
Title: Re: The 11 february 2007 build is out.
Post by: Pecan on February 14, 2007, 03:23:53 pm
LS,
When I right click on a project file and select "Build file "in the context-menu CB crashes.
Any idea?

Jan

I tried this on SVN 3590 on both Windows and Linux. It worked ok for me.
What's your SVN, Nightly, OS, or whatever?