qga/meson: Remove unused lib stdc++
qga_libs are libraries for guest agent linking. Guest Agent is a pure C-language application and doesn't need any C++ libs. VSS linking dependencies are placed in a separate file. Signed-off-by: Kostiantyn Kostiuk <kkostiuk@redhat.com> Link: https://lore.kernel.org/r/20260330113906.168002-3-kkostiuk@redhat.com Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Kostiantyn Kostiuk committed
Mar 30, 2026 at 14:39 UTC
a2f3d1405a2b926ce165324cabc9b4d33904dd2c
1 file changed
+1
-1
qga/meson.build
+1
-1
@@ -97,7 +97,7 @@ if host_os == 'windows'
97
qga_libs += ['-lws2_32', '-lwinmm', '-lpowrprof', '-lwtsapi32', '-lwininet', '-liphlpapi', '-lnetapi32',
98
'-lsetupapi', '-lcfgmgr32', '-luserenv', '-lpdh' ]
99
if have_qga_vss
100
- qga_libs += ['-lole32', '-loleaut32', '-lshlwapi', '-lstdc++', '-Wl,--enable-stdcall-fixup']
100
+ qga_libs += ['-lole32', '-loleaut32', '-lshlwapi', '-Wl,--enable-stdcall-fixup']
101
subdir('vss-win32')
102
endif
103
endif