| D | config.py | 107 def _gen_temp_sourcefile(self, body, headers, lang): argument 110 if headers: 111 for header in headers: 119 def _preprocess(self, body, headers, include_dirs, lang): argument 120 src = self._gen_temp_sourcefile(body, headers, lang) 126 def _compile(self, body, headers, include_dirs, lang): argument 127 src = self._gen_temp_sourcefile(body, headers, lang) 135 def _link(self, body, headers, include_dirs, libraries, library_dirs, argument 137 (src, obj) = self._compile(body, headers, include_dirs, lang) 172 def try_cpp(self, body=None, headers=None, include_dirs=None, lang="c"): argument [all …]
|