Author Topic: The 11 february 2007 build is out.  (Read 17527 times)

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5490
The 11 february 2007 build is out.
« 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:

  • Console Wizard: Bug fix regarding selection of threaded library (for MSVC 7.1)
  • wxSmith: Implemented first working menu editor (wxMenu and wxMenuBar should be ready in next commit to show this editor working)

Regressions/Confirmed/Annoying/Common bugs:

  • toolbar-images-not-changing-state (is a wx problem/Win XP problem)
  • menu items with icon not correctly aligned (since wx263) (is fixed with our special wx263/wx28 dll)

« Last Edit: February 12, 2007, 12:59:46 pm by killerbot »

Offline magisu

  • Multiple posting newcomer
  • *
  • Posts: 19
Re: The 11 february 2007 build is out.
« Reply #1 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?

noir_mxj

  • Guest
Re: The 11 february 2007 build is out.
« Reply #2 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:)



Offline Marenz

  • Multiple posting newcomer
  • *
  • Posts: 37
Re: The 11 february 2007 build is out.
« Reply #3 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

Offline Silverling

  • Multiple posting newcomer
  • *
  • Posts: 18
Re: The 11 february 2007 build is out.
« Reply #4 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.

Offline indigo0086

  • Almost regular
  • **
  • Posts: 150
Re: The 11 february 2007 build is out.
« Reply #5 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.
« Last Edit: February 12, 2007, 03:45:56 pm by indigo0086 »

Offline Marenz

  • Multiple posting newcomer
  • *
  • Posts: 37
Re: The 11 february 2007 build is out.
« Reply #6 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

Offline Silverling

  • Multiple posting newcomer
  • *
  • Posts: 18
Re: The 11 february 2007 build is out.
« Reply #7 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.

ir0nk0ala

  • Guest
Re: The 11 february 2007 build is out.
« Reply #8 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..?
« Last Edit: February 12, 2007, 11:07:14 pm by ir0nk0ala »

Offline Pecan

  • Plugin developer
  • Lives here!
  • ****
  • Posts: 2750
Re: The 11 february 2007 build is out.
« Reply #9 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.

« Last Edit: February 12, 2007, 11:07:46 pm by Pecan »

ir0nk0ala

  • Guest
Re: The 11 february 2007 build is out.
« Reply #10 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.

Offline indigo0086

  • Almost regular
  • **
  • Posts: 150
Re: The 11 february 2007 build is out.
« Reply #11 on: February 13, 2007, 12:52:25 am »
nm.
« Last Edit: February 13, 2007, 12:55:58 am by indigo0086 »

steveth45

  • Guest
Re: The 11 february 2007 build is out.
« Reply #12 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.

Offline indigo0086

  • Almost regular
  • **
  • Posts: 150
Re: The 11 february 2007 build is out.
« Reply #13 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.

Offline Jan van den Borst

  • Multiple posting newcomer
  • *
  • Posts: 99
Re: The 11 february 2007 build is out.
« Reply #14 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