User forums > Nightly builds
The 10 October 2009 build (5859) is out.
stahta01:
Patch needed for Code::Blocks under Windows with NOPCH.
Edit: Added ThreadSearch patch.
--- Code: ---Index: src/sdk/editormanager.cpp
===================================================================
--- src/sdk/editormanager.cpp (revision 5870)
+++ src/sdk/editormanager.cpp (working copy)
@@ -26,6 +26,7 @@
#include "projectfile.h"
#include "pluginmanager.h"
#include "manager.h"
+ #include "macrosmanager.h"
#include "filemanager.h"
#include "sdk_events.h"
#include "projectbuildtarget.h"
Index: src/plugins/contrib/ThreadSearch/SearchInPanel.cpp
===================================================================
--- src/plugins/contrib/ThreadSearch/SearchInPanel.cpp (revision 5870)
+++ src/plugins/contrib/ThreadSearch/SearchInPanel.cpp (working copy)
@@ -17,8 +17,11 @@
#include "sdk.h"
#ifndef CB_PRECOMP
+ #include <wx/bitmap.h>
+ #include <wx/bmpbuttn.h>
#include <wx/checkbox.h>
#include <wx/sizer.h>
+ #include <configmanager.h>
#endif
#include "wx/things/toggle.h"
Index: src/plugins/codecompletion/parser/token.cpp
===================================================================
--- src/plugins/codecompletion/parser/token.cpp (revision 5870)
+++ src/plugins/codecompletion/parser/token.cpp (working copy)
@@ -9,6 +9,8 @@
#include <sdk.h>
#include <globals.h>
+#include <logmanager.h>
+#include <manager.h>
#include "token.h"
#include <wx/intl.h>
#include <wx/tokenzr.h>
Index: src/plugins/codecompletion/parser/parserthread.cpp
===================================================================
--- src/plugins/codecompletion/parser/parserthread.cpp (revision 5870)
+++ src/plugins/codecompletion/parser/parserthread.cpp (working copy)
@@ -13,6 +13,7 @@
#include <wx/app.h>
#include <wx/msgdlg.h>
#include <manager.h>
+#include <logmanager.h>
#include <globals.h>
#include <cctype>
--- End code ---
Tim S.
killerbot:
applied : rev 5871
critic:
In some projects I use common sources (libraries) and in project tree files are appear with a part of path. It is not suitable, in my opinion, because node's name doesn't fit in project manager widget and it's not easy for user eye to look for filename in such tree.
I think that the following look will be better:
with path information (if it possible, show paths in braces with gray font color)
--- Code: ---project
SomeVirtualFolder
file1.h (some/path/to/library1)
file1.cpp (some/path/to/library1)
file2.h (some/path/to/library1)
file2.cpp (some/path/to/library1)
file1.h (some/path/to/library2)
file1.cpp (some/path/to/library2)
file2.h (some/path/to/library2)
file2.cpp (some/path/to/library2)
--- End code ---
or without path information (when mouse over node you can show tooltip with full filename of path to file)
--- Code: ---project
SomeVirtualFolder
file1.h
file1.cpp
file2.h
file2.cpp
file1.h
file1.cpp
file2.h
file2.cpp
--- End code ---
critic:
For a long time in C::B exists a bug - description follows:
Conditions:
Custom makefile project
Steps:
Press `Build` or `Rebuild` button to start build or rebuild project process
Wait for process start
Press `Abort` button to stop build or rebuild process
On the last step you will see, that this command don't work.
ollydbg:
--- Quote from: critic on October 21, 2009, 07:45:56 am ---For a long time in C::B exists a bug - description follows:
Conditions:
Custom makefile project
Steps:
Press `Build` or `Rebuild` button to start build or rebuild project process
Wait for process start
Press `Abort` button to stop build or rebuild process
On the last step you will see, that this command don't work.
--- End quote ---
Hi, I have the similar problem when build the OpenCV library. The library was build from a makefile which was generated from CMake, Once I start building the OpenCV library, there is no way to stop the build process. :(
Navigation
[0] Message Index
[#] Next page
[*] Previous page
Go to full version