Home
last modified time | relevance | path

Searched refs:compiler_name (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython2/Lib/distutils/
Dunixccompiler.py213 def _is_gcc(self, compiler_name): argument
214 return "gcc" in compiler_name or "g++" in compiler_name
/external/python/setuptools/setuptools/_distutils/
Dunixccompiler.py262 def _is_gcc(self, compiler_name): argument
263 return "gcc" in compiler_name or "g++" in compiler_name
/external/python/cpython3/Lib/distutils/
Dunixccompiler.py217 def _is_gcc(self, compiler_name): argument
219 return any(name in compiler_name for name in ("gcc", "g++", "clang"))