News:

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

Main Menu

The 18 March 2008 build (4966) is out.

Started by killerbot, March 18, 2008, 09:15:56 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_wx287.7z

For those who might need this one (when no MingW installed on your system) : the mingw10m.dll : http://prdownload.berlios.de/codeblocks/mingwm10_gcc421.7z

The 18 March 2008 build is out.
  - Windows :
   http://prdownload.berlios.de/codeblocks/CB_20080318_rev4966_win32.7z
  - Linux :
   none

Resolved Fixed:


  • cb_console_runner now shows the execution time on any platform
  • wxMac: launched programs should not appear behind C::B
  • pumped wxScintilla to v1.71.1 (latest version available) which includes Scintilla v1.62
  • AStyle Plugin: Applied patch #2405: New features for AStyle plugin (thanks go to DrewBoo)
  • Applied patch by Bloody Cake to compile wxScintilla on Linux.
  • symtab plugin: let it know *.so files
  • dx wizard: update to allow selection / recognition of dx9
  • Fixed: File status icon not changed after a file can't be open. (Thanks to DrewBoo)
  • Fixed: Wrong command line option in AVR wizard
  • Fixed: Broken Syntax-highlighting of wxSmith generated code
  • BrowseTracker 1.2.74 2008/03/15 : Added Config settings panel to CB editor settings menu
  • Added: C++ exception generation for Intel compiler by the wizards
  • Improved: Auto-detection of Intel C/C++ compiler on Windows. Now auto-detection code is able to-
    - Auto-detect Intel compilers of any version number.
    - Auto-detect working MSVC installation and configure it to use with Intel compiler

Regressions/Confirmed/Annoying/Common bugs:


  • toolbar-images-not-changing-state (is a wx problem/Win XP problem)


Jenna

A source-tarball and binaries for debian (32- and 64-bit) can be downloaded from my server (see signature).
There are also precompiled packages with wxWidgets cross-compile libraries available.

Last week I moved my server from home-dsl to a (more or less) real server.
Download should be much faster now.

Loaden

Code-Completion not work! when i use WTL (http://wtl.sourceforge.net) or ATL project.
example:
CString str;
when i type 'str.', it not show the function of CString.

dronT78


killerbot


Xaviou

Ubuntu 6.10 & 7.04 Amd64 tar.gz archive (containing '.deb' installers builds with wx284) can be found here.
My wxWidgets's stuff : [url="https://wxstuff.xaviou.fr/"]https://wxstuff.xaviou.fr/[/url]

BrianSidebotham

QuoteFixed: Wrong command line option in AVR wizard

What command line option is wrong?

Jenna

Quote from: BrianSidebotham on March 20, 2008, 03:05:37 PM
QuoteFixed: Wrong command line option in AVR wizard

What command line option is wrong?

Look here

pasgui

Build for Ubuntu i386/amd64 can be found here

Regards, pasgui

Grom

Would be grate to have automatic doxygen comments generation in new class plugin.
gcc+winXP+suse.

Gerome

Hello,

The function list does not seem to work also, it's empty :(
I'm under Win XP with latest C::B installed completely + 18th of March update file.
Thanks a lot.

PsYhLo

i found one bug i thing so

so everyone type in english alphabet but with cyrillic ones too
when i start to type some text in my native language (Bulgarian) and when i press Backspace to delete some mismatched chars and try to type again nothing happen no chars appear on screen
when i switch to eng and after that back to BG i start to type again this is kind of annoying

my editor is configed for UTF-8
svn 4966


PS
sorry for my english hope you understand my problem
[url="http://img529.imageshack.us/img529/822/3664286vy.png"]http://img529.imageshack.us/img529/822/3664286vy.png[/url]

MortenMacFly

Quote from: Grom on March 22, 2008, 07:53:10 PM
Would be grate to have automatic doxygen comments generation in new class plugin.
Indeed, I thought about that, too already. Would be pretty easy to realise though.
Compiler logging: Settings->Compiler & Debugger->tab "Other"->Compiler logging="Full command line"
C::B Manual: [url="https://www.codeblocks.org/docs/main_codeblocks_en.html"]https://www.codeblocks.org/docs/main_codeblocks_en.html[/url]
C::B FAQ: [url="https://wiki.codeblocks.org/index.php?title=FAQ"]https://wiki.codeblocks.org/index.php?title=FAQ[/url]

stahta01

Change Needed to Compile under Windows without Pre-Compiled Headers (PCH).

The header compilerfactory.h needs added.

May patch adds compilerfactory.h and re-orders the headers so it uses CB_PRECOMP macro.

Tim S


Index: src/plugins/compilergcc/compilerICC.cpp
===================================================================
--- src/plugins/compilergcc/compilerICC.cpp (revision 4970)
+++ src/plugins/compilergcc/compilerICC.cpp (working copy)
@@ -8,16 +8,21 @@
  */

#include <sdk.h>
-#include <prep.h>
-#include "compilerICC.h"
-#include <wx/intl.h>
-#include <wx/regex.h>
+#ifndef CB_PRECOMP
+    #include <wx/intl.h>
+    #include <wx/msgdlg.h>
+    #include <wx/regex.h>
+   
+    #include <compilerfactory.h>
+    #include <logmanager.h>
+    #include <manager.h>
+#endif  // CB_PRECOMP
+
#include <wx/config.h>
#include <wx/fileconf.h>
-#include <wx/msgdlg.h>
-#include "manager.h"
-#include "logmanager.h"

+#include "compilerICC.h"
+
CompilerICC::CompilerICC()
     : Compiler(_("Intel C/C++ Compiler"), _T("icc"))
{


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