Lines Matching refs:paths
143 def _find_exe(exe, paths=None):
147 MSVC program search paths from the registry; next, the directories
152 if not paths:
153 paths = os.getenv('path').split(os.pathsep)
154 for p in paths:
226 paths = self._paths.split(os.pathsep)
227 self.cc = _find_exe("cl.exe", paths)
228 self.linker = _find_exe("link.exe", paths)
229 self.lib = _find_exe("lib.exe", paths)
230 self.rc = _find_exe("rc.exe", paths) # resource compiler
231 self.mc = _find_exe("mc.exe", paths) # message compiler
232 self.mt = _find_exe("mt.exe", paths) # message compiler
305 # XXX: This may produce absurdly long paths. We should check