Index: lldb/test/Shell/helper/build.py =================================================================== --- lldb/test/Shell/helper/build.py +++ lldb/test/Shell/helper/build.py @@ -553,7 +553,7 @@ args.append(self.compiler) if self.toolchain_type == 'clang-cl': - args.append('-m' + self.arch) + args.append('--target=%s-windows-msvc' % ('i386' if self.arch == '32' else 'x86_64')) if self.opt == 'none': args.append('/Od')