2011-10-15 05:43:51 +08:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
import argparse
|
|
|
|
import os
|
|
|
|
import os.path
|
|
|
|
import shutil
|
|
|
|
import subprocess
|
|
|
|
import sys
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2011-10-15 05:43:51 +08:00
|
|
|
class BuildError(Exception):
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2011-10-15 05:43:51 +08:00
|
|
|
def __init__(self,
|
|
|
|
string=None,
|
|
|
|
path=None,
|
|
|
|
inferior_error=None):
|
|
|
|
self.m_string = string
|
|
|
|
self.m_path = path
|
|
|
|
self.m_inferior_error = inferior_error
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2011-10-15 05:43:51 +08:00
|
|
|
def __str__(self):
|
|
|
|
if self.m_path and self.m_string:
|
2016-09-07 04:57:50 +08:00
|
|
|
return "Build error: %s (referring to %s)" % (
|
|
|
|
self.m_string, self.m_path)
|
2011-10-15 05:43:51 +08:00
|
|
|
if self.m_path:
|
|
|
|
return "Build error (referring to %s)" % (self.m_path)
|
|
|
|
if self.m_string:
|
|
|
|
return "Build error: %s" % (self.m_string)
|
|
|
|
return "Build error"
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2011-10-15 05:43:51 +08:00
|
|
|
class LLDBBuildBot:
|
2016-09-07 04:57:50 +08:00
|
|
|
|
|
|
|
def __init__(
|
|
|
|
self,
|
|
|
|
build_directory_path,
|
|
|
|
log_path,
|
|
|
|
lldb_repository_url="http://llvm.org/svn/llvm-project/lldb/trunk",
|
|
|
|
llvm_repository_url="http://llvm.org/svn/llvm-project/llvm/trunk",
|
|
|
|
clang_repository_url="http://llvm.org/svn/llvm-project/cfe/trunk",
|
|
|
|
revision=None):
|
2011-10-15 05:43:51 +08:00
|
|
|
self.m_build_directory_path = os.path.abspath(build_directory_path)
|
|
|
|
self.m_log_path = os.path.abspath(log_path)
|
|
|
|
self.m_lldb_repository_url = lldb_repository_url
|
|
|
|
self.m_llvm_repository_url = llvm_repository_url
|
|
|
|
self.m_clang_repository_url = clang_repository_url
|
|
|
|
self.m_revision = revision
|
|
|
|
self.m_log_stream = None
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2011-10-15 05:43:51 +08:00
|
|
|
def Setup(self):
|
|
|
|
if os.path.exists(self.m_build_directory_path):
|
2016-09-07 04:57:50 +08:00
|
|
|
raise BuildError(
|
|
|
|
string="Build directory exists",
|
|
|
|
path=self.m_build_directory_path)
|
2011-10-15 05:43:51 +08:00
|
|
|
if os.path.exists(self.m_log_path):
|
|
|
|
raise BuildError(string="Log file exists", path=self.m_log_path)
|
|
|
|
self.m_log_stream = open(self.m_log_path, 'w')
|
|
|
|
os.mkdir(self.m_build_directory_path)
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2011-10-15 05:43:51 +08:00
|
|
|
def Checkout(self):
|
|
|
|
os.chdir(self.m_build_directory_path)
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2011-10-15 05:43:51 +08:00
|
|
|
cmdline_prefix = []
|
2016-09-07 04:57:50 +08:00
|
|
|
|
|
|
|
if self.m_revision is not None:
|
2011-10-15 05:43:51 +08:00
|
|
|
cmdline_prefix = ["svn", "-r %s" % (self.m_revision), "co"]
|
|
|
|
else:
|
|
|
|
cmdline_prefix = ["svn", "co"]
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
returncode = subprocess.call(
|
|
|
|
cmdline_prefix + [
|
|
|
|
self.m_lldb_repository_url,
|
|
|
|
"lldb"],
|
|
|
|
stdout=self.m_log_stream,
|
|
|
|
stderr=self.m_log_stream)
|
2011-10-15 05:43:51 +08:00
|
|
|
if returncode != 0:
|
|
|
|
raise BuildError(string="Couldn't checkout LLDB")
|
|
|
|
|
|
|
|
os.chdir("lldb")
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
returncode = subprocess.call(
|
|
|
|
cmdline_prefix + [
|
|
|
|
self.m_llvm_repository_url,
|
|
|
|
"llvm.checkout"],
|
|
|
|
stdout=self.m_log_stream,
|
|
|
|
stderr=self.m_log_stream)
|
2011-10-15 05:43:51 +08:00
|
|
|
|
|
|
|
if returncode != 0:
|
|
|
|
raise BuildError(string="Couldn't checkout LLVM")
|
|
|
|
|
|
|
|
os.symlink("llvm.checkout", "llvm")
|
|
|
|
|
|
|
|
os.chdir("llvm/tools")
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
returncode = subprocess.call(
|
|
|
|
cmdline_prefix + [
|
|
|
|
self.m_clang_repository_url,
|
|
|
|
"clang"],
|
|
|
|
stdout=self.m_log_stream,
|
|
|
|
stderr=self.m_log_stream)
|
2011-10-15 05:43:51 +08:00
|
|
|
|
|
|
|
if returncode != 0:
|
|
|
|
raise BuildError(string="Couldn't checkout Clang")
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2011-10-15 05:43:51 +08:00
|
|
|
def Build(self):
|
|
|
|
os.chdir(self.m_build_directory_path)
|
|
|
|
os.chdir("lldb/llvm")
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
returncode = subprocess.call(["./configure",
|
|
|
|
"--disable-optimized",
|
|
|
|
"--enable-assertions",
|
|
|
|
"--enable-targets=x86,x86_64,arm"],
|
|
|
|
stdout=self.m_log_stream,
|
2011-10-15 05:43:51 +08:00
|
|
|
stderr=self.m_log_stream)
|
|
|
|
|
|
|
|
if returncode != 0:
|
|
|
|
raise BuildError(string="Couldn't configure LLVM/Clang")
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
returncode = subprocess.call(["make"],
|
|
|
|
stdout=self.m_log_stream,
|
2011-10-15 05:43:51 +08:00
|
|
|
stderr=self.m_log_stream)
|
|
|
|
|
|
|
|
if returncode != 0:
|
|
|
|
raise BuildError(string="Couldn't build LLVM/Clang")
|
|
|
|
|
|
|
|
os.chdir(self.m_build_directory_path)
|
|
|
|
os.chdir("lldb")
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
returncode = subprocess.call(["xcodebuild",
|
|
|
|
"-project", "lldb.xcodeproj",
|
|
|
|
"-target", "lldb-tool",
|
|
|
|
"-configuration", "Debug",
|
2011-10-15 05:43:51 +08:00
|
|
|
"-arch", "x86_64",
|
|
|
|
"LLVM_CONFIGURATION=Debug+Asserts",
|
|
|
|
"OBJROOT=build"],
|
2016-09-07 04:57:50 +08:00
|
|
|
stdout=self.m_log_stream,
|
|
|
|
stderr=self.m_log_stream)
|
2011-10-15 05:43:51 +08:00
|
|
|
|
|
|
|
if returncode != 0:
|
|
|
|
raise BuildError(string="Couldn't build LLDB")
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2011-10-15 05:43:51 +08:00
|
|
|
def Test(self):
|
|
|
|
os.chdir(self.m_build_directory_path)
|
|
|
|
os.chdir("lldb/test")
|
2016-09-07 04:57:50 +08:00
|
|
|
|
|
|
|
returncode = subprocess.call(["./dotest.py", "-t"],
|
|
|
|
stdout=self.m_log_stream,
|
2011-10-15 05:43:51 +08:00
|
|
|
stderr=self.m_log_stream)
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2011-10-15 05:43:51 +08:00
|
|
|
def Takedown(self):
|
|
|
|
os.chdir("/tmp")
|
|
|
|
self.m_log_stream.close()
|
|
|
|
shutil.rmtree(self.m_build_directory_path)
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2011-10-15 05:43:51 +08:00
|
|
|
def Run(self):
|
|
|
|
self.Setup()
|
|
|
|
self.Checkout()
|
|
|
|
self.Build()
|
2016-09-07 04:57:50 +08:00
|
|
|
# self.Test()
|
2011-10-15 05:43:51 +08:00
|
|
|
self.Takedown()
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
|
2011-10-15 05:43:51 +08:00
|
|
|
def GetArgParser():
|
2016-09-07 04:57:50 +08:00
|
|
|
parser = argparse.ArgumentParser(
|
|
|
|
description="Try to build LLDB/LLVM/Clang and run the full test suite.")
|
|
|
|
parser.add_argument(
|
|
|
|
"--build-path",
|
|
|
|
"-b",
|
|
|
|
required=True,
|
|
|
|
help="A (nonexistent) path to put temporary build products into",
|
|
|
|
metavar="path")
|
|
|
|
parser.add_argument(
|
|
|
|
"--log-file",
|
|
|
|
"-l",
|
|
|
|
required=True,
|
|
|
|
help="The name of a (nonexistent) log file",
|
|
|
|
metavar="file")
|
|
|
|
parser.add_argument(
|
|
|
|
"--revision",
|
|
|
|
"-r",
|
|
|
|
required=False,
|
|
|
|
help="The LLVM revision to use",
|
|
|
|
metavar="N")
|
2011-10-15 05:43:51 +08:00
|
|
|
return parser
|
|
|
|
|
|
|
|
parser = GetArgParser()
|
|
|
|
arg_dict = vars(parser.parse_args())
|
|
|
|
|
|
|
|
build_bot = LLDBBuildBot(build_directory_path=arg_dict["build_path"],
|
|
|
|
log_path=arg_dict["log_file"],
|
|
|
|
revision=arg_dict["revision"])
|
|
|
|
|
|
|
|
try:
|
|
|
|
build_bot.Run()
|
|
|
|
except BuildError as err:
|
|
|
|
print err
|