[zorg] r368232 - [LLDB] Pass the target to the lldb_cmake_builder

Jonas Devlieghere via llvm-commits llvm-commits at lists.llvm.org
Wed Aug 7 15:58:08 PDT 2019


Author: jdevlieghere
Date: Wed Aug  7 15:58:08 2019
New Revision: 368232

URL: http://llvm.org/viewvc/llvm-project?rev=368232&view=rev
Log:
[LLDB] Pass the target to the lldb_cmake_builder

Modified:
    zorg/trunk/zorg/jenkins/monorepo_build.py

Modified: zorg/trunk/zorg/jenkins/monorepo_build.py
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/zorg/jenkins/monorepo_build.py?rev=368232&r1=368231&r2=368232&view=diff
==============================================================================
--- zorg/trunk/zorg/jenkins/monorepo_build.py (original)
+++ zorg/trunk/zorg/jenkins/monorepo_build.py Wed Aug  7 15:58:08 2019
@@ -519,7 +519,7 @@ def lldb_builder():
         footer()
 
 
-def lldb_cmake_builder():
+def lldb_cmake_builder(target):
     """Do a CMake build of lldb."""
 
     test_dir = os.path.join(conf.workspace, 'test')
@@ -902,7 +902,7 @@ def main():
         elif args.build_type == 'lldb':
             lldb_builder()
         elif args.build_type == 'lldb-cmake':
-            lldb_cmake_builder()
+            lldb_cmake_builder(args.build_target)
         elif args.build_type == 'cmake':
             cmake_builder(args.build_target)
         elif args.build_type == 'fetch':




More information about the llvm-commits mailing list