Re: [PATCH] meson.build: Remove the logic to link C code with the C++ linker

2023-07-06 Thread Konstantin Kostiuk
Reviewed-by: Konstantin Kostiuk On Thu, Jul 6, 2023 at 9:47 AM 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 simpl

Re: [PATCH] meson.build: Remove the logic to link C code with the C++ linker

2023-07-06 Thread Philippe Mathieu-Daudé
On 6/7/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 som

Re: [PATCH] meson.build: Remove the logic to link C code with the C++ linker

2023-07-06 Thread Paolo Bonzini
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 som

[PATCH] meson.build: Remove the logic to link C code with the C++ linker

2023-07-05 Thread Thomas Huth
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