On 7/6/23 08:47, Thomas Huth wrote:
We are not mixing C++ with C code anymore, the only remaining C++ code in qga/vss-win32/ is used for a plain C++ executable. Thus we can remove the hacks for linking C code with the C++ linker now to simplify meson.build a little bit, and also to avoid that some C++ code sneaks in by accident again.
Queued, thanks. However I think these two lines are worth keeping:
+if 'cpp' in all_languages summary_info += {'C++ compiler': ' '.join(meson.get_compiler('cpp').cmd_array())} -else - summary_info += {'C++ compiler': false} endif
Perhaps we could also make the whole if...endif conditional on Windows, but an extra line in the summary won't hurt.
Paolo