D | compiler.py | 78 def preprocess(self, source_files, out=None, flags=[], env=None, cwd=None): argument 80 out, err, rc = lit.util.executeCommand(cmd, env=env, cwd=cwd) 83 def compile(self, source_files, out=None, flags=[], env=None, cwd=None): argument 85 out, err, rc = lit.util.executeCommand(cmd, env=env, cwd=cwd) 88 def link(self, source_files, out=None, flags=[], env=None, cwd=None): argument 90 out, err, rc = lit.util.executeCommand(cmd, env=env, cwd=cwd) 94 cwd=None): argument 96 out, err, rc = lit.util.executeCommand(cmd, env=env, cwd=cwd) 100 flags=[], env=None, cwd=None): argument 111 source_file, object_file, flags=flags, env=env, cwd=cwd) [all …]
|