tests/123: Add /nologo to cl and ml

To make them less chatty.
pull/5331/head
Dylan Baker 6 years ago
parent dc564a71a3
commit c91e779d8b
  1. 4
      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,

Loading…
Cancel
Save