Code::Blocks Forums

Developer forums (C::B DEVELOPMENT STRICTLY!) => Development => Topic started by: Miguel Gimenez on September 10, 2026, 02:04:03 pm

Title: Change to C++17?
Post by: Miguel Gimenez on September 10, 2026, 02:04:03 pm
There is an updated version of astyle library (3.6.18) that fixes some issues (see ticket 1643 (https://sourceforge.net/p/codeblocks/tickets/1643/), but it uses the stupid C++17-only std::string_view and we currently are using C++11.

There is also some C++17-only code, like [fallthrough] in clangd_client, generating warnings.

Should we change to C++17?
Title: Re: Change to C++17?
Post by: LETARTARE on September 10, 2026, 03:03:09 pm
Have you tried to compile the full version with C++17 (Win-xx, Linux-xx) ?
If so, what warnings have you obtained ?
Title: Re: Change to C++17?
Post by: LETARTARE on September 10, 2026, 03:18:30 pm
Leap-15.6-64bits, wx-3.2.8;gtk3-u, gc-15.2
'r14003.cbp' ( no 'contrib' )
Here is the compilation log with 'C++17' :
Title: Re: Change to C++17?
Post by: Miguel Gimenez on September 10, 2026, 04:38:02 pm
Quote
Have you tried to compile the full version with C++17

I have not tried, developers must agree on the change beforehand. Changing the CBP is easy, the problem may come later from autotools.

Errors in Squirrel can be fixed, but it uses tricky memory accesses that may be a headache.
Title: Re: Change to C++17?
Post by: gd_on on September 10, 2026, 05:49:27 pm
Just to inform you that with my CodeBlocks_Windows.workspace, and setting my global variable cb_build.cpp_std to gnu++20, codeblocks compiles correctly as far as I have tested. Of course, this does not cover all build methods.
Title: Re: Change to C++17?
Post by: christo on September 10, 2026, 06:50:06 pm
Hi Miguel,

I've been using c++20 for a long time without any issues in my custom branch's  autotools build on ubuntu. I think we can upgrade to c++20 directly.

For autotools, following change should be sufficient : https://github.com/josephch/codeblocks/commit/c56d5feaf0ce0c5d511263d1fba29e3713af68e2
Title: Re: Change to C++17?
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.
Title: Re: Change to C++17?
Post by: Miguel Gimenez on September 10, 2026, 07:02:09 pm
Should we use gnu++20 or plain c++20?