News:

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

Main Menu

The 07 August 2010 build (6454) is out.

Started by killerbot, August 08, 2010, 05:15:36 PM

Previous topic - Next topic

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.


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:

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

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.
(most of the time I ignore long posts)
[strangers don't send me private messages, I'll ignore them; post a topic in the forum, but first read the rules!]

wavelet

If you got a dream, you gotta protect it.

stahta01

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

Tim S.


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>
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]