News:

The new Release 25.03 is out! You can download binaries for Windows and many major Linux distros here .

Main Menu

The 29 May 2008 build (5082) is out.

Started by killerbot, May 29, 2008, 08:29:33 PM

Previous topic - Next topic

killerbot

Get quick announcements through the RSS feed http://www.codeblocks.org/nightly/CodeBlock_RSS.xml

Before you use a nightly make sure you understand how it works.

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

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

The 29 May 2008 build is out.
  - Windows :
   http://prdownload.berlios.de/codeblocks/CB_20080529_rev5082_win32.7z
  - Linux :
   none

Resolved Fixed:


  • Fixed: [Bug #13841] memory dump does randomly not work (by applying [Patch #2475]). Thanks Jens for the patch
  • fixed broken replace in files (thanks to Bob)
  • Fixed: Memory dump window shows wrong memory address
  • DragScroll 1.2.15 2008/05/22
    -Allow multiple invocations of OnAppStartupDoneInit() in order to catch windows that open after we intialize. (2008/03/4)
    - Conversion to use only one event handler (2008/04/22)
    - Optimizations in MouseEventsHandler
    - SearchForScrollableWindows() as service to external callers
    - Added DragScroll events for rescanning/adding/removing windows
    - Optimized/cleaned up MouseEventHandler
    - Removed OnWindowOpen EditorManager dependencies
    - Add Configure() and event to invoke it. 2008/04/29
  • Script console is now a docking window (instead of being part of the logs)
  • Script console now keeps a history of entered commands
  • Fixed layout of some dialogs
  • Applied: [Patch #2452] Speedup 'update.bat'
  • Debugger plugin: Bugfix: Valid frames in the call stack being discarded, ? Check: '(' printed as the address of call stack #0 when there's not address information at all for it

Regressions/Confirmed/Annoying/Common bugs:


  • toolbar-images-not-changing-state (is a wx problem/Win XP problem)


Jenna

A source tar-ball (usable on linux and windows) and binaries for debian (32 and 64 bit) are available on my server.

Xaviou

Ubuntu 7.04 to 8.04 Amd64 tar.gz archive (containing '.deb' installers builds with wx287) can be found here.
My wxWidgets's stuff : [url="https://wxstuff.xaviou.fr/"]https://wxstuff.xaviou.fr/[/url]

pasgui

Build for Ubuntu i386/amd64 can be found here

Best regards, pasgui

nanyu

#4
codeblocks svn 5082 + windows XP (home) + mingw32

First Step:      RUN CodeBlocks, and start coding
Second Step:  in the mean time, insert a cd into my Dvd drive and browse it
Third Step:     Back to CodeBlocks and build the project. While the project is building, an error msg pops up.
                   The title is:"mingw32-g++.exe - no disk"
                    Error Msg:"No Disk were found, please insert a disk in to D:"(P.S. my DVD Driver is D:\)
Fourth Step: either Reboot CodeBlocks or Reboot the pc, problem still remain. The only way to pass the above problem is, insert a CD into my DVD Driver during CodeBlocks is building project.

help me , thanks.

stahta01

nanyu:

Try doing
"File" -> "Recent Files"
"Clear History"

Someone posted this as a fix for a problem somewhat like yours.

Tim S
C Programmer working to learn more about C++.
On Windows 10 64 bit and Windows 11 64 bit.
--
When in doubt, read the CB WiKi FAQ. [url="http://wiki.codeblocks.org"]http://wiki.codeblocks.org[/url]

nanyu

Dear Tim
i did wht u told, but problem still remain.

btw, i didn't browse the CD with Code Blocks at all. I only browsed my CD with file explorer. Therefore, i don't think clear History will help

stahta01

#7
nanyu:

Has the MinGW GCC ever worked? If not, I suggest downloading a newer 3.4.5 MinGW install.
One of the recent MinGW GCC had a problem that was close to yours.

Tim S
C Programmer working to learn more about C++.
On Windows 10 64 bit and Windows 11 64 bit.
--
When in doubt, read the CB WiKi FAQ. [url="http://wiki.codeblocks.org"]http://wiki.codeblocks.org[/url]

killerbot

or download the MinGW files for the 4.2.1 (or is it 4.1.2) (I use the dm2) : works ok for me

Biplab

It's a known problem of the GCC-3.4.5 build for Vista. Please download the latest one.
Be a part of the solution, not a part of the problem.

Sunyata

I am also having the same problem in XP and Vista.
But after restart the PC and not try to access the CD drive, it works fine.
Another way to resolve the problem is just insert any CD into the drive,
the error will not appear anymore.

nanyu

#11
Dear stahta01,killerbot,Biplab and Biplab ,thanks for your replies.
But I still cann`t  settle it now.
To BipLab, ACE can not be compiled in (mingw32) GCC3.4.5 while I really need it.

Biplab

As I said earlier, it is a problem of certain build of GCC. You can read about the problem in details from the following links.

Quotehttp://forums.next.codeblocks.org/index.php?topic=8088.msg60513#msg60513
http://www.nabble.com/forum/ViewPost.jtp?post=16344592&framed=y

This bug was fixed in the following release.
Quotehttp://sourceforge.net/forum/forum.php?forum_id=815819

So grab the right package and your problem will be solved.

If I'm not wrong, C::B 8.02 ships with the wrong GCC for Vista package which has this issue. May be it's time for a new release or at least repackage the 8.02 with the fixed compiler. :)

Quote from: nanyu on June 02, 2008, 09:51:43 AM
To BipLab, ACE can not be compiled in (mingw32) GCC3.4.5 while I really need it.

Sorry, but I couldn't understand your message.
Be a part of the solution, not a part of the problem.

stahta01

Patch for NON-PCH Build on Windows.

Tim S


Index: src/plugins/contrib/headerfixup/fileanalysis.cpp
===================================================================
--- src/plugins/contrib/headerfixup/fileanalysis.cpp   (revision 5084)
+++ src/plugins/contrib/headerfixup/fileanalysis.cpp   (working copy)
@@ -12,6 +12,7 @@
   #include "manager.h"
   #include "editormanager.h"
   #include "cbeditor.h"
+  #include "logmanager.h"
#endif

#include <wx/ffile.h>
C Programmer working to learn more about C++.
On Windows 10 64 bit and Windows 11 64 bit.
--
When in doubt, read the CB WiKi FAQ. [url="http://wiki.codeblocks.org"]http://wiki.codeblocks.org[/url]

Belgabor

#14
The Insert -> All Class methods without implementation function does not add methods of nested classes correctly.
If I have

struct A {
  struct B {
    void callme();
  };
};

it correctly shows "A::B::callme(): void" in the selection list, but adds

void B::callme()
{

}

to the cpp file, ie the "A::" is missing.