Recent Posts

Pages: [1] 2 3 4 5 6 ... 10
1
Hi Pecan,

I think some lines in Makefile.am were deleted accidently in revision 13996, restoring that should fix the issue.

https://sourceforge.net/p/codeblocks/code/13996/tree//trunk/src/plugins/contrib/codesnippets/Makefile.am?diff=51421f1dc431436b6eb31d56:13995

2
Development / svn14014 regression: cb compile syntax error
« Last post by blauzahn on Yesterday at 11:25:29 pm »
in pluginsconfigurationdlg.cpp:41

Code
#if wxCHECK_VERSION(3, 3, 2)
    const bool IsDark = wxSystemSettings::GetAppearance()IsDark();
#else
    const bool IsDark = false;
#endif

There is a point missing before IsDark();

Should be:

Code
const bool IsDark = wxSystemSettings::GetAppearance().IsDark();

Thank you.
3
Development / Re: Change to C++17?
« Last post by Miguel Gimenez on Yesterday at 09:13:56 am »
Squirrel warning removed in r14013, thanks christo and LETARTARE.
4
Development / Re: Change to C++17?
« Last post by LETARTARE on Yesterday at 12:23:50 am »
@christo :Thanks
Errors in Squirrel are removed by the indicated correction. (r14011)
5
Nightly builds / Re: The 06 September 2026 build (14003) is out.
« Last post by lp08 on September 10, 2026, 11:19:05 pm »
wxWidgets Debug Allert
A debugging check in this application has failed.
../../src/common/wincmn.cpp(3370): assert "!wxMouseCapture::IsInCaptureStack(this)" failed in captureMouse(): Recapturing the mouse in the same windows?  :-\ :o

I'm having a problem reproducing this. Can you give us a few steps to cause the problem?

I opened the project containing my program and two generated log.txt files in Code::Blocks. I executed my program using the MSYS2 terminal. Upon returning to Code::Blocks, I reload the log view, and clicking inside the Code::Blocks interface causes it to crash / throw an error.
6
Development / Re: Change to C++17?
« Last post by killerbot on September 10, 2026, 08:07:09 pm »
I am building the nightlies for a few weeks (?months) with -std=c++23.

I would suggest to step up to 23, and let's avoid extension, so I would suggest not to use 'gnu++xx'.

What do you think ?
7
Development / Re: Change to C++17?
« Last post by stahta01 on September 10, 2026, 07:50:38 pm »
Remember to update the file from "https://www.gnu.org/software/autoconf-archive/ax_cxx_compile_stdcxx.html" in the "m4" folder.

The link above did not work searching found this link "https://github.com/autoconf-archive/autoconf-archive/blob/master/m4/ax_cxx_compile_stdcxx.m4"

8
Development / Re: Change to C++17?
« Last post by christo on September 10, 2026, 07:17:29 pm »
I think plain c++20 should be okay as we do not use any gnu specific extensions.

Regarding squirrel warnings, looks like it is fixed upstream by casting : https://github.com/albertodemichelis/squirrel/commit/6ad6f6427157757c4431907dde0a1e5712a5cf67
9
Development / Re: Change to C++17?
« Last post by Miguel Gimenez on September 10, 2026, 07:02:09 pm »
Should we use gnu++20 or plain c++20?
10
Development / Re: Change to C++17?
« Last post by Pecan on September 10, 2026, 06:51:50 pm »
I use wx2.3.8 and wx3.3.3 for CodeBlocks (all compiled at c++20) every day.
Pages: [1] 2 3 4 5 6 ... 10