User forums > Nightly builds

The 21 September 2008 build (5208) is out.

<< < (7/8) > >>

Jenna:

--- Quote from: hangl on October 06, 2008, 03:27:55 am ---CB is a great work ,it is my first choice.but I face some problems ,when I compile a project,CB ofen crashed!sadly I have to say it crashed too may times ,I did not do special work ,just modified code and recompiled ,sometimes it crased, sometimes not ,maybe 20~30% .

I am using nightly build 5208,winxp sp2 mingw Gcc 4.2.3

crash information is attached!



--- End quote ---
Do you know if the crash happens, if the code is error-free, or only while parsing output from compiler including error-messages ?

killerbot:
I can confirm this, and Morton also suffers from this. It seems to happen when there are errors during the compilation step.

jfouche:
Hi

You can do like me : don't make error while you 're coding  :P
--
Jérémie

stahta01:
Patch needed to build current SVN under Windows when not using PCH.

The unpatched code built OK with PCH using MinGW GCC 3.4.5, 4.2.4, and 4.3.2 (Last two where TDM Builds)

Tim S


--- Code: ---Index: src/plugins/contrib/wxSmith/wxsresourcetree.cpp
===================================================================
--- src/plugins/contrib/wxSmith/wxsresourcetree.cpp (revision 5245)
+++ src/plugins/contrib/wxSmith/wxsresourcetree.cpp (working copy)
@@ -30,6 +30,11 @@
 #include "configmanager.h"
 #include "globals.h"
 
+#if defined(__WXMSW__) && defined(LoadImage)
+    // Fix Windows winuser.h Header define of LoadImage.
+    #undef LoadImage
+#endif
+
 namespace
 {
     class wxsResourceTreeProjectData: public wxsResourceTreeItemData

--- End code ---

killerbot:

--- Quote from: stahta01 on October 08, 2008, 02:09:56 am ---Patch needed to build current SVN under Windows when not using PCH.

The unpatched code built OK with PCH using MinGW GCC 3.4.5, 4.2.4, and 4.3.2 (Last two where TDM Builds)

Tim S


--- Code: ---Index: src/plugins/contrib/wxSmith/wxsresourcetree.cpp
===================================================================
--- src/plugins/contrib/wxSmith/wxsresourcetree.cpp (revision 5245)
+++ src/plugins/contrib/wxSmith/wxsresourcetree.cpp (working copy)
@@ -30,6 +30,11 @@
 #include "configmanager.h"
 #include "globals.h"
 
+#if defined(__WXMSW__) && defined(LoadImage)
+    // Fix Windows winuser.h Header define of LoadImage.
+    #undef LoadImage
+#endif
+
 namespace
 {
     class wxsResourceTreeProjectData: public wxsResourceTreeItemData

--- End code ---

--- End quote ---

I should have listened to you, I was adding these from your patch in berlios 1 by 1 till it compiled, but that was on a system using pch. Will do it today.

Navigation

[0] Message Index

[#] Next page

[*] Previous page

Go to full version