Lines Matching refs:subprocess
14 import subprocess
27 subprocess.check_call(["git", "clone", "--depth", "1", "-b", BRANCH,
32 subprocess.check_call(["cmake", "../llvm", "-G", "Ninja",
39 subprocess.check_call(["ninja", "install"])
42 subprocess.check_call(["cp", "bin/llvm-symbolizer", target_dir + "/bin"])
43 subprocess.check_call(["cp", "bin/llvm-profdata", target_dir + "/bin"])
44 subprocess.check_call(["cp", "bin/llvm-cov", target_dir + "/bin"])
45 libstdcpp = subprocess.check_output(["c++",
47 subprocess.check_call(["cp", libstdcpp.strip(), target_dir + "/lib"])
53 subprocess.check_call(
60 subprocess.check_call(["ninja", "cxx"])
61 subprocess.check_call(["cp", "-r", "lib", target_dir + "/" + short])