From dc03808313d32147ac3bbf2ae7b3b55a2e9d2738 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tam=C3=A1s=20B=C3=A1lint=20Misius?= Date: Mon, 8 Feb 2021 13:24:53 +0100 Subject: [PATCH] Fix ghactions build This linker flag removes a warning on my machine instead of breaking the build. --- meson.build | 3 --- 1 file changed, 3 deletions(-) diff --git a/meson.build b/meson.build index 4a387ac12..f29ba0c0f 100644 --- a/meson.build +++ b/meson.build @@ -135,9 +135,6 @@ if copt_msvc args_msvc_opt = [ '/Oy-', '/fp:fast' ] project_c_args += args_msvc_opt project_cpp_args += args_msvc_opt - project_link_args += [ - '/NODEFAULTLIB:LIBCMT', - ] endif else if copt_platform == 'mac'