[Lldb-commits] [PATCH] D55230: [lit] Multiple build outputs and default target bitness
Stella Stamenova via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Mon Dec 3 14:48:06 PST 2018
stella.stamenova added inline comments.
================
Comment at: lldb/lit/helper/build.py:664
+ if args.output and args.mode == 'compile' and len(args.inputs) > 1:
+ raise ValueError('Cannot specify -o with mode=compile and multiple source files. Use --outdir instead.')
+
----------------
Why not? It makes sense that the test might still need to know and/or specify the name of the binary that was produced. The script could require that both -o and --outdir are specified, but I think -o is still needed.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D55230/new/
https://reviews.llvm.org/D55230
More information about the lldb-commits
mailing list