[Lldb-commits] [PATCH] D69341: [zorg] Port LLDB cmake build factory to git
Pavel Labath via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Wed Oct 23 06:51:24 PDT 2019
labath created this revision.
labath added reviewers: stella.stamenova, jankratochvil, gkistanova.
The changes appear to be straight-forward, but I don't know how to test them
without committing to zorg.
https://reviews.llvm.org/D69341
Files:
zorg/buildbot/builders/LLDBBuilder.py
Index: zorg/buildbot/builders/LLDBBuilder.py
===================================================================
--- zorg/buildbot/builders/LLDBBuilder.py
+++ zorg/buildbot/builders/LLDBBuilder.py
@@ -74,7 +74,7 @@
command=getVisualStudioEnvironment(vs, target_arch),
extract_fn=extractSlaveEnvironment))
- f = getLLDBSource(f,'llvm')
+ f.addGetSourcecodeSteps()
build_cmd=['ninja']
install_cmd = ['ninja','install']
@@ -105,7 +105,7 @@
))
cmake_cmd = [
- "cmake", "-G", "Ninja", "../llvm",
+ "cmake", "-G", "Ninja", "../" + self.monorepo_dir,
"-DCMAKE_BUILD_TYPE=" + config,
"-DCMAKE_INSTALL_PREFIX=../install"
]
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D69341.226133.patch
Type: text/x-patch
Size: 725 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20191023/7c309c72/attachment.bin>
More information about the lldb-commits
mailing list