User forums > Nightly builds

The 07 August 2010 build (6454) is out.

<< < (4/4)

Jenna:

--- Quote from: Grom on August 14, 2010, 05:26:40 am ---Debugger break point doesn't support functions in h files with path #include "./something/header.h". Code blocks is unable to show those files. It has an empty call stack!!! It has empty cells in the "file" and "line" columns.


--- End quote ---

It works fine here on debian 64-bit with gdb 7.1.
Call stack is not empty.
The only (minor) issue I see, is that it shows a left brace in the address column for the first entry of the callstack window (Nr 0). It should be empty, because gdb does not report an address here.

oBFusCATed:
Does building works OK on windows?
For me it doesn't:

--- Code: ---mingw32-g++.exe -shared  -Wl,--out-implib=..\..\..\devel\libwxflatnotebook.dll.a -Wl,--dll -L..\..\..\devel -LC:\dev\libs\wx\lib\gcc_dll  ..\..\..\.objs\plugins\contrib\wxSmithContribItems\wxflatnotebook\wxflatnotebook\wxFlatNotebook\src\wxFlatNotebook\fnb_resources.o ..\..\..\.objs\plugins\contrib\wxSmithContribItems\wxflatnotebook\wxflatnotebook\wxFlatNotebook\src\wxFlatNotebook\popup_dlg.o ..\..\..\.objs\plugins\contrib\wxSmithContribItems\wxflatnotebook\wxflatnotebook\wxFlatNotebook\src\wxFlatNotebook\renderer.o ..\..\..\.objs\plugins\contrib\wxSmithContribItems\wxflatnotebook\wxflatnotebook\wxFlatNotebook\src\wxFlatNotebook\wxFlatNotebook.o ..\..\..\.objs\plugins\contrib\wxSmithContribItems\wxflatnotebook\wxflatnotebook\wxFlatNotebook\src\wxFlatNotebook\xh_fnb.o ..\..\..\.objs\plugins\contrib\wxSmithContribItems\wxflatnotebook\wxflatnotebook\wxFlatNotebook\src\wxFlatNotebook\fnb_customize_dlg.o   -o ..\..\..\devel\wxflatnotebook.dll -mthreads  -lwxpropgrid -lwxmsw28u
c:/mingw/bin/../lib/gcc/mingw32/4.4.0/../../../../mingw32/bin/ld.exe: final link failed: No space left on device
collect2: ld returned 1 exit status
Creating library file: ..\..\..\devel\libwxflatnotebook.dll.a
Process terminated with status 1 (2 minutes, 48 seconds)
0 errors, 4 warnings

--- End code ---
See the "0 errors, 4 warnings", shouldn't this be "1 error, 4 warnings"?

OS: winxp sp3 or sp2 x86, tdm gcc 4.4.0, cb 6454
Also tried to build the project with 1 and with 6 threads, same result.

wavelet:
a good work

stahta01:
Patch needed for NON PCH Build on Windows; <algorithm> needed for std::sort use.

Tim S.


--- Code: ---Index: src/sdk/projectmanager.cpp
===================================================================
--- src/sdk/projectmanager.cpp (revision 6507)
+++ src/sdk/projectmanager.cpp (working copy)
@@ -8,6 +8,7 @@
  */
 
 #include "sdk_precomp.h"
+#include <algorithm>
 #include <vector>
 
 #ifndef CB_PRECOMP
Index: src/sdk/loggers.cpp
===================================================================
--- src/sdk/loggers.cpp (revision 6507)
+++ src/sdk/loggers.cpp (working copy)
@@ -8,6 +8,9 @@
  */
 
 #include "sdk_precomp.h"
+#ifndef WX_PRECOMP
+    #include <wx/settings.h>
+#endif
 #ifndef CB_PRECOMP
     #include <wx/listctrl.h>
     #include <wx/textctrl.h>

--- End code ---

Navigation

[0] Message Index

[*] Previous page

Go to full version