Code::Blocks Forums

User forums => Nightly builds => Topic started by: killerbot on June 02, 2011, 11:11:35 pm

Title: The 02 June 2011 build (7178) is out.
Post by: killerbot on June 02, 2011, 11:11:35 pm
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 (http://forums.codeblocks.org/index.php/topic,3232.0.html).

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

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

The 02 June 2011 build is out.
  - Windows :
   http://prdownload.berlios.de/codeblocks/CB_20110602_rev7178_win32.7z
  - Linux :
   none

Resolved Fixed:


Regressions/Confirmed/Annoying/Common bugs:


Title: Re: The 02 June 2011 build (7178) is out.
Post by: ahui886 on June 03, 2011, 05:05:09 am
great,thanks...
Title: Re: The 02 June 2011 build (7178) is out.
Post by: Lelouch on June 03, 2011, 11:46:59 am
After the change of files in some project, sometimes I need to "reparse" the whole project to make the "code-completion" work..

I think it could be done automatically

Is it possible?
Title: Re: The 02 June 2011 build (7178) is out.
Post by: Jenna on June 03, 2011, 01:55:11 pm
Debian packages (binaries and sources) for 32-bit and 64-bit systems can be found in my repo (http://apt.jenslody.de/).
Title: Re: The 02 June 2011 build (7178) is out.
Post by: Lelouch on June 11, 2011, 07:03:53 pm
Still that problem

when we have char array as one variable, every other variables below will mix up with char array in watch window

eg:

char str[BUF_LEN];
int a, b; //a, b will be mixed with str, so it's hard to see a, b

Title: Re: The 02 June 2011 build (7178) is out.
Post by: Jenna on June 11, 2011, 08:06:36 pm
Still that problem

when we have char array as one variable, every other variables below will mix up with char array in watch window

eg:

char str[BUF_LEN];
int a, b; //a, b will be mixed with str, so it's hard to see a, b



And the answer is still the same:
Is this only my own experience?
No, it is not, probably this bug is fixed in the debugger_branch. There the watches are vastly improved.

The fix will not make it into trunk, unless the debugger-branch is remerged with it.
So you have to live with it, or use one of the (more rare) debugger-branch nightlies.
Title: Re: The 02 June 2011 build (7178) is out.
Post by: gbr on June 12, 2011, 03:55:23 pm
Still that problem

when we have char array as one variable, every other variables below will mix up with char array in watch window

eg:

char str[BUF_LEN];
int a, b; //a, b will be mixed with str, so it's hard to see a, b



And the answer is still the same:
Is this only my own experience?
No, it is not, probably this bug is fixed in the debugger_branch. There the watches are vastly improved.

The fix will not make it into trunk, unless the debugger-branch is remerged with it.
So you have to live with it, or use one of the (more rare) debugger-branch nightlies.

I'm more of a lurker on the forums than anything else, but I use the nightly builds extensively.

Are there plans to do the merge in the future, or is the debugger_branch considered a separate product?

Gerald
Title: Re: The 02 June 2011 build (7178) is out.
Post by: Jenna on June 12, 2011, 04:01:37 pm
Are there plans to do the merge in the future, or is the debugger_branch considered a separate product?

It will be remerged with trunk as soon as possible.
Title: Re: The 02 June 2011 build (7178) is out.
Post by: stahta01 on June 17, 2011, 05:52:16 pm
Patch needed for Code::Blocks under Windows when not using PCH.

Tim S.

Code
Index: src/sdk/pipedprocess.cpp
===================================================================
--- src/sdk/pipedprocess.cpp (revision 7241)
+++ src/sdk/pipedprocess.cpp (working copy)
@@ -13,6 +13,7 @@
     #include <wx/app.h>         // wxWakeUpIdle
     #include "pipedprocess.h" // class' header file
     #include "sdk_events.h"
+    #include "globals.h"        // UnixFilename
 #endif
 
 
Title: Re: The 02 June 2011 build (7178) is out.
Post by: killerbot on June 17, 2011, 05:58:58 pm
done, thanks Tim