Lines Matching refs:subprocess
14 import subprocess
26 subprocess.check_call(["git", "clone", "--depth", "1", "-b",
29 subprocess.check_call(["git", "clone", "--depth", "1", "-b",
31 subprocess.check_call(["git", "clone", "--depth", "1", "-b",
34 subprocess.check_call(["git", "clone", "--depth", "1", "-b",
36 subprocess.check_call(["git", "clone", "--depth", "1", "-b",
38 subprocess.check_call(["git", "clone", "--depth", "1", "-b",
43 subprocess.check_call(["cmake", "..", "-G", "Ninja",
48 subprocess.check_call(["ninja", "install"])
51 subprocess.check_call(["cp", "bin/llvm-symbolizer", target_dir + "/bin"])
52 subprocess.check_call(["cp", "bin/llvm-profdata", target_dir + "/bin"])
53 subprocess.check_call(["cp", "bin/llvm-cov", target_dir + "/bin"])
54 libstdcpp = subprocess.check_output(["c++",
56 subprocess.check_call(["cp", libstdcpp.strip(), target_dir + "/lib"])
61 subprocess.check_call(["cmake", "..", "-G", "Ninja",
66 subprocess.check_call(["ninja", "cxx"])
67 subprocess.check_call(["cp", "-r", "lib", target_dir + "/msan"])