Recent Posts

Pages: 1 2 3 4 5 6 [7] 8 9 10
61
Nightly builds / The 06 March 2026 build (13810) is out.
« Last post by killerbot on March 06, 2026, 02:47:23 pm »
We switched to gcc 15.1.0 (on 23 May 2025) --> download the new wx/mingw dll's see link below

Get the compiler we use here : https://github.com/brechtsanders/winlibs_mingw/releases/download/15.1.0posix-12.0.0-ucrt-r1/winlibs-x86_64-posix-seh-gcc-15.1.0-mingw-w64ucrt-12.0.0-r1.7z

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(s) for Code::Blocks : https://sourceforge.net/projects/codeblocks/files/Binaries/Nightlies/Prerequisites/wxmsw32u_gcc_cb_wx328_2D_gcc1510-mingw64.7z
A link to Mingw64 dll's needed by Code::Blocks : http://sourceforge.net/projects/codeblocks/files/Binaries/Nightlies/Prerequisites/Mingw64dlls15.1.0.7z


The 06 March 2026 build is out.
  - Windows :
   http://sourceforge.net/projects/codeblocks/files/Binaries/Nightlies/2026/CB_20260306_rev13810_win64.7z
  - Linux :
   none

The current SDK version is : 2.25.0

Resolved Fixed:

  • lcbp: add the unified CodeBlocks cbps for Windows OS. (thanks gd_on)

Regressions/Confirmed/Annoying/Common bugs:


    62
    Nightly builds / Re: The 09 February 2026 build (13785) is out.
    « Last post by Xaviou on March 06, 2026, 10:05:55 am »
    Hi
    Hi, Xaviou, I'm not sure why the "at" is preferred instead of "[]"?
    Well, I don't either really know  :-[ It's a solution given by chatgpt to solve this building problem:
    Quote from: chatgpt
    ArrayChecks is a wxArrayBool, and with GCC 15, the non-const [] operator of wxBaseArray<bool> breaks (bool& is impossible with vector<bool>)

    We have some discussion here: New wxWidgets releases
    I apologize : I had this solution just after rev13802 (solving the first building problem).
    I updated to rev 13810 before creating the patch, and tested the build, but only with the patch, not without.

    Now that I have tested the rev 13810 "as is", I can confirm it works without the watch.
    Again, sorry.

    Regards.
    Xav'
    63
    Nightly builds / Re: The 09 February 2026 build (13785) is out.
    « Last post by ollydbg on March 06, 2026, 12:55:34 am »
    Hi.

    There is also some few code modifications to the wxSmith plugin for wxWidgets-3.3.2.

    Attached is a patch  from svn 13810.

    Regards
    Xav'

    Hi, Xaviou, I'm not sure why the "at" is preferred instead of "[]"?

    We have some discussion here: New wxWidgets releases

    Thanks.

    64
    Nightly builds / Re: The 09 February 2026 build (13785) is out.
    « Last post by Xaviou on March 05, 2026, 08:40:48 pm »
    Hi.

    There is also some few code modifications to the wxSmith plugin for wxWidgets-3.3.2.

    Attached is a patch  from svn 13810.

    Regards
    Xav'
    65
    Why do you need such feature.

    I think mostly, the files in the cbp are the same(mostly), but different OSs have different include search files and linker options.
    66
    Is there a script or program that would create a project file from 'Linux' to 'Windows' or vice versa?
    67
    Using Code::Blocks / Re: Line spacing in editor
    « Last post by ollydbg on March 05, 2026, 03:06:53 am »
    If you look at this file: sdk\wxscintilla\include\wx\wxscintilla.h

    You will see some code snippet:

    Code
        // Set extra ascent for each line
        void SetExtraAscent(int extraAscent);

        // Get extra ascent for each line
        int GetExtraAscent() const;

    But after searching, I see those 2 functions are not called by other clients, so my guess is that you need a way to call them.
    68
    General (but related to Code::Blocks) / Re: New wxWidgets releases
    « Last post by ollydbg on March 04, 2026, 11:15:38 pm »
    I have tested the patch with wx3.0.2 on Linux and wx3.2.10 on MSW, works OK. Do you plan to commit it?

    I will do it in this morning.

    EDIT

    Done in [r13810], thanks!
    69
    General (but related to Code::Blocks) / Re: New wxWidgets releases
    « Last post by Miguel Gimenez on March 04, 2026, 06:09:38 pm »
    I have tested the patch with wx3.0.2 on Linux and wx3.2.10 on MSW, works OK. Do you plan to commit it?
    70
    General (but related to Code::Blocks) / Re: New wxWidgets releases
    « Last post by ollydbg on March 04, 2026, 02:48:52 pm »
    Let me try this first:

    WX_DEFINE_ARRAY_INT(unsigned char, wxArrayBool)

    Code
    diff --git a/src/plugins/contrib/wxSmith/wxwidgets/properties/wxsarraystringcheckproperty.h b/src/plugins/contrib/wxSmith/wxwidgets/properties/wxsarraystringcheckproperty.h
    index ab0b632..d9846f1 100644
    --- a/src/plugins/contrib/wxSmith/wxwidgets/properties/wxsarraystringcheckproperty.h
    +++ b/src/plugins/contrib/wxSmith/wxwidgets/properties/wxsarraystringcheckproperty.h
    @@ -25,7 +25,7 @@
     
     #include "../../properties/wxsproperties.h"
     
    -WX_DEFINE_ARRAY_INT(bool,wxArrayBool);
    +WX_DEFINE_ARRAY_INT(unsigned char,wxArrayBool);
     
     /** \brief Property for editing arrays of strings with checked option
      *


    This patch works OK now.


    EDIT:

    Now, I see the whole workspace is built OK now with wx 3.3.2. (note I do not build Fortran plugin nor the NassiShneiderman plugin)
    Pages: 1 2 3 4 5 6 [7] 8 9 10