From 39c1ae3a436004b4ce0331b7a666c5efad58e648 Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Sat, 21 May 2022 12:56:24 +0300 Subject: [PATCH] v.builder: use /NOLOGO, when building cached object files with msvc --- vlib/v/builder/msvc.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlib/v/builder/msvc.v b/vlib/v/builder/msvc.v index 6db4565b98..02514d0724 100644 --- a/vlib/v/builder/msvc.v +++ b/vlib/v/builder/msvc.v @@ -445,7 +445,7 @@ fn (mut v Builder) build_thirdparty_obj_file_with_msvc(path string, moduleflags oargs << env_ldflags } str_oargs := oargs.join(' ') - cmd := '"$msvc.full_cl_exe_path" /volatile:ms $str_oargs $defines $include_string /c "$cfile" /Fo"$obj_path"' + cmd := '"$msvc.full_cl_exe_path" /NOLOGO /volatile:ms $str_oargs $defines $include_string /c "$cfile" /Fo"$obj_path"' // Note: the quotes above ARE balanced. $if trace_thirdparty_obj_files ? { println('>>> build_thirdparty_obj_file_with_msvc cmd: $cmd')