[Lldb-commits] [PATCH] D58860: [build.py] Allow clang-cl to build files starting with '/U'
Alex Langford via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Mon Mar 4 13:36:32 PST 2019
This revision was automatically updated to reflect the committed changes.
Closed by commit rLLDB355341: [build.py] Allow clang-cl to build files starting with '/U' (authored by xiaobai, committed by ).
Herald added subscribers: teemperor, abidh.
Herald added a project: LLDB.
Changed prior to commit:
https://reviews.llvm.org/D58860?vs=189015&id=189197#toc
Repository:
rLLDB LLDB
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D58860/new/
https://reviews.llvm.org/D58860
Files:
lit/helper/build.py
Index: lit/helper/build.py
===================================================================
--- lit/helper/build.py
+++ lit/helper/build.py
@@ -568,6 +568,8 @@
args.append('/c')
args.append('/Fo' + obj)
+ if self.toolchain_type == 'clang-cl':
+ args.append('--')
args.append(source)
return ('compiling', [source], obj,
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D58860.189197.patch
Type: text/x-patch
Size: 380 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20190304/07a80e18/attachment.bin>
More information about the lldb-commits
mailing list