Author Topic: The 11 May 2006 build is out.  (Read 12341 times)

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5490
The 11 May 2006 build is out.
« on: May 11, 2006, 10:59:26 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://download.berlios.de/codeblocks/wxmsw26u_gcc_cb.7z
For those who might need this one (when no MingW installed on your system) : the mingw10m.dll : http://download.berlios.de/codeblocks/mingwm10.7z

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

The 11 May 2006 build is out.
  - Windows : http://download.berlios.de/codeblocks/CB_20060511_rev2442_win32.7z
  - Linux :
         http://download.berlios.de/codeblocks/CB_20060511_rev2442_ubuntu.deb (not yet)
         http://download.berlios.de/codeblocks/CB_20060511_rev2442_fc4+5.rpm (not yet)

Resolved Fixed:

  • added ability to toggle an env.var instead of removing * inform the user if (un)setting an env-var fails * changed project settings to compile as stand-alone
  • wxSmith redesign:
     * Added scrollbars to editor area
     * Default sizer properties are now read from configuration
     * Some other small fixes
  • compiler/build macros : $link_flat_objects : list of "flat" objects (flat : output_dir + name + '.' + extension (other dir structures are removed))

Regressions/Confirmed/Annoying/Common bugs:

  • toolbar-images-not-changing-state (is a wx problem/Win XP problem)
  • there are several issues with Code Completion (is being redesigned : work in progress)


Escorter

  • Guest
Re: The 11 May 2006 build is out.
« Reply #1 on: May 12, 2006, 12:48:03 am »
This release also crashes when I try to save the OGRE workspace...  :(

nfz

  • Guest
Re: The 11 May 2006 build is out.
« Reply #2 on: May 12, 2006, 01:43:13 am »
I have yet to experience this problem.  I normaly use my own build of C::B and so far I have never had a crash when saving Ogre_stlp.workspace (5 months going strong).  I downloaded todays nightly build to test (since my builds are a little modified) and no problems saving the modified Ogre workspace (added and deleted a number of projects in the workspace).

So maybe it is an environment issue.  What is your OS, are you using unicode or ansi build of WxWidgets, etc?
« Last Edit: May 12, 2006, 01:45:26 am by nfz »

Offline mandrav

  • Project Leader
  • Administrator
  • Lives here!
  • *****
  • Posts: 4315
    • Code::Blocks IDE
Re: The 11 May 2006 build is out.
« Reply #3 on: May 12, 2006, 08:34:57 am »
This release also crashes when I try to save the OGRE workspace...  :(

There should be a codeblocks.rpt file containing the crash dump. Can you zip it and post it?
Be patient!
This bug will be fixed soon...

Offline Zingam

  • Multiple posting newcomer
  • *
  • Posts: 74
Re: The 11 May 2006 build is out.
« Reply #4 on: May 12, 2006, 10:04:59 am »
I think the DDE bug is back. Well not in the same way but still there is something when the pop-up pops up to ask to select a compiler.


BTW will you someday make it possible for DMD compiler to compile debugging info?

takeshimiya

  • Guest
Re: The 11 May 2006 build is out.
« Reply #5 on: May 12, 2006, 10:12:40 am »
I think the DDE bug is back. Well not in the same way but still there is something when the pop-up pops up to ask to select a compiler.
No, that's not the DDE bug, it's another "bug" (it's not really a bug): when a compiler get's added to C::B (the other day support for the MSVC2005 was added), the autodetection of compilers dialog appears once again, one time.

BTW will you someday make it possible for DMD compiler to compile debugging info?
What are the necesary flags to do so, and what fails currently?

Escorter

  • Guest
Re: The 11 May 2006 build is out.
« Reply #6 on: May 12, 2006, 07:20:15 pm »
So maybe it is an environment issue.  What is your OS, are you using unicode or ansi build of WxWidgets, etc?

OS: WinXP Pro
WxWidgets: Unicode

There should be a codeblocks.rpt file containing the crash dump. Can you zip it and post it?

http://rapidshare.de/files/20283719/codeblocks.7z.html
« Last Edit: May 12, 2006, 07:23:32 pm by Escorter »

Offline Zingam

  • Multiple posting newcomer
  • *
  • Posts: 74
Re: The 11 May 2006 build is out.
« Reply #7 on: May 13, 2006, 08:42:53 pm »
I think the DDE bug is back. Well not in the same way but still there is something when the pop-up pops up to ask to select a compiler.
No, that's not the DDE bug, it's another "bug" (it's not really a bug): when a compiler get's added to C::B (the other day support for the MSVC2005 was added), the autodetection of compilers dialog appears once again, one time.

What happened is: I unpacked CB in the directory where the previous version was installed. I double clicked a .cpp file and the dialog to select a compiler appeared and also an error message that the file could not be found and it wasn't opened after CB was loaded.


Quote
BTW will you someday make it possible for DMD compiler to compile debugging info?
What are the necesary flags to do so, and what fails currently?
http://forums.codeblocks.org/index.php?action=post;quote=24511;topic=3087.0;sesc=b30e74af010293a1e1f46ce18869e63b

When normally files are compiled with th DMD compiler they are added like this: DMD file1.d file2.d file3.d etc. and then they are linked but CB compiles them individually DMD file1.d DMD file2.d and then they are linked in such way no debuging info is added because it seems the -g switch does not work. There is a way to pass an option to the linker: /CO but I cannot find a way to make CB pass it to the linker.

To pass a switch to the linker, we use the compiler switch -L like this dmd main.d -L/CO

Offline Michael

  • Lives here!
  • ****
  • Posts: 1608
Re: The 11 May 2006 build is out.
« Reply #8 on: May 13, 2006, 09:39:16 pm »
I think the DDE bug is back. Well not in the same way but still there is something when the pop-up pops up to ask to select a compiler.
No, that's not the DDE bug, it's another "bug" (it's not really a bug): when a compiler get's added to C::B (the other day support for the MSVC2005 was added), the autodetection of compilers dialog appears once again, one time.

What happened is: I unpacked CB in the directory where the previous version was installed. I double clicked a .cpp file and the dialog to select a compiler appeared and also an error message that the file could not be found and it wasn't opened after CB was loaded.

I will never do so. IMHO, it is better (and to avoid potential problems) to not unpack a C::B rev on the directory of a previous one.

Best wishes,
Michael

Offline Zingam

  • Multiple posting newcomer
  • *
  • Posts: 74
Re: The 11 May 2006 build is out.
« Reply #9 on: May 13, 2006, 10:33:30 pm »
I delete "shared" always and there were never problems with that.