What std is being used to build CB and wxWidgets?
CXXFLAGS+="-std=c++11" or 14 or 17 or 20?
I'd like to set my wx build to the level being used for the nightlies.
C++11 is the correct value, C++14 worked for wxSmith plugin and C++17 failed my recent patch set it to C++11 under MSys2 MinGW.
Note: The [Windows] nightly does use C++11 with GNU extension for some CB Plugins I forgot if the CB Core App uses extension or not.
Edit: Before my patch listed above the bug in configure/make code resulted in GCC 14 trying to use the default of C++17 instead of C++11 as CB was set to use before GCC 14 or maybe 13 default value was for GCC. The m4 script update returned to C++11 for GCC 14 configure./make builds.
Edit2: "AX_CXX_COMPILE_STDCXX(11, noext)" in configure.ac is what says the answer is c++11 without extensions with configure/make; but, the script was out of date for GCC 14.
Tim S.