From d0dc164013bad636ae84d20da0bde2079b20d102 Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Tue, 8 Aug 2017 17:35:50 -0700 Subject: [PATCH] Disable the default behavior of printing a logo, Microsoft. --- test/helpers/load_language.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/test/helpers/load_language.cc b/test/helpers/load_language.cc index 77ebc848..f01a2184 100644 --- a/test/helpers/load_language.cc +++ b/test/helpers/load_language.cc @@ -43,6 +43,7 @@ static int compile_parser( CreateDirectory("out\\tmp", nullptr); string command = "cl.exe"; + command += " /nologo"; command += " /LD"; command += " /I " + header_dirname; command += " /Od";