News:

Accounts with zero posts and zero activity during the last months will be deleted periodically to fight SPAM!

Main Menu

The 02 June 2011 build (7178) is out.

Started by killerbot, June 02, 2011, 11:11:35 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_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:




ahui886


Lelouch

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?

Jenna

Debian packages (binaries and sources) for 32-bit and 64-bit systems can be found in my repo.

Lelouch

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


Jenna

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.

gbr

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

Jenna

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.

stahta01

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


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