aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2019-05-07 12:23:36 -0700
committerDylan Baker <dylan@pnwbakers.com>2019-05-10 13:36:35 -0700
commitc91e779d8b609cc5228df7304062641d48a93744 (patch)
tree5a5a66ac72741a6a92824b2c2ab2b026b056b5d8
parentdc564a71a3a1d60683978eb91fb11a7de4684280 (diff)
downloadmeson-c91e779d8b609cc5228df7304062641d48a93744.zip
meson-c91e779d8b609cc5228df7304062641d48a93744.tar.gz
meson-c91e779d8b609cc5228df7304062641d48a93744.tar.bz2
tests/123: Add /nologo to cl and ml
To make them less chatty.
-rw-r--r--test cases/common/123 llvm ir and assembly/meson.build4
1 files changed, 2 insertions, 2 deletions
diff --git a/test cases/common/123 llvm ir and assembly/meson.build b/test cases/common/123 llvm ir and assembly/meson.build
index 2826e88..3cc7d5e 100644
--- a/test cases/common/123 llvm ir and assembly/meson.build
+++ b/test cases/common/123 llvm ir and assembly/meson.build
@@ -46,12 +46,12 @@ foreach lang : ['c', 'cpp']
square_preproc = custom_target(lang + square_impl + 'preproc',
input : square_impl,
output : preproc_name,
- command : [cl, '/EP', '/P', '/Fi' + preproc_name, '/Tc', '@INPUT@'] + uscore_args)
+ command : [cl, '/nologo', '/EP', '/P', '/Fi' + preproc_name, '/Tc', '@INPUT@'] + uscore_args)
# Use assembled object file instead of the original .S assembly source
square_impl = custom_target(lang + square_impl,
input : square_preproc,
output : lang + square_base + '.obj',
- command : [ml, '/safeseh', '/Fo', '@OUTPUT@', '/c', '@INPUT@'])
+ command : [ml, '/nologo', '/safeseh', '/Fo', '@OUTPUT@', '/c', '@INPUT@'])
endif
if supported_cpus.contains(cpu)
e = executable('square_asm_' + lang, square_impl, 'main.' + lang,