Searched refs:exec_path (Results 1 – 1 of 1) sorted by relevance
| /llvm-project-15.0.7/libcxx/utils/libcxx/ |
| H A D | compiler.py | 167 def link(self, source_files, exec_path=None, flags=[], cwd=None): argument 168 cmd = self.linkCmd(source_files, exec_path, flags) 171 cs_cmd, cs_out, cs_err, cs_rc = self.codesign(exec_path, cwd) 176 def compileLink(self, source_files, exec_path=None, flags=[], argument 178 cmd = self.compileLinkCmd(source_files, exec_path, flags) 181 cs_cmd, cs_out, cs_err, cs_rc = self.codesign(exec_path, cwd) 186 def codesign(self, exec_path, cwd=None): argument 188 if not exec_path: 193 cmd = ['xcrun', 'codesign', '-s', codesign_ident, exec_path] 214 object_file, exec_path=out, flags=flags, cwd=cwd)
|