From 0eeb9316bee8202b7b896f83f92fdba8302a6c5c Mon Sep 17 00:00:00 2001 From: Jon Turney Date: Tue, 9 Oct 2018 17:13:32 +0100 Subject: [PATCH] Don't hardcode cl in test common/123 --- test cases/common/123 llvm ir and assembly/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 1746c9151..2f6034b82 100644 --- a/test cases/common/123 llvm ir and assembly/meson.build +++ b/test cases/common/123 llvm ir and assembly/meson.build @@ -29,7 +29,7 @@ foreach lang : ['c', 'cpp'] # cl.exe pre-processor first and then assemble it with the ml.exe assembler. # Then we can link it into the executable. if cc.get_argument_syntax() == 'msvc' - cl = find_program('cl') + cl = cc.cmd_array() if cpu == 'x86' ml = find_program('ml') elif cpu == 'x86_64'