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.next.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:
- added $TO_ABSOLUTE_PATH macro, can be used for compiler/linkeroptions to turn relative paths into absolute paths
- CC: Code clean up
Regressions/Confirmed/Annoying/Common bugs:
great,thanks...
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?
Debian packages (binaries and sources) for 32-bit and 64-bit systems can be found in my repo (http://apt.jenslody.de/).
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
Quote from: 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
And the answer is still the same:
Quote from: oBFusCATed on May 30, 2011, 01:32:05 PM
Quote from: Lelouch on May 30, 2011, 12:11:59 PM
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.
Quote from: jens on June 11, 2011, 08:06:36 PM
Quote from: 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
And the answer is still the same:
Quote from: oBFusCATed on May 30, 2011, 01:32:05 PM
Quote from: Lelouch on May 30, 2011, 12:11:59 PM
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
Quote from: gbr on June 12, 2011, 03:55:23 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.
Patch needed for Code::Blocks under Windows when not using PCH.
Tim S.
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
done, thanks Tim