Lines Matching full:path

47             if v and vt == winreg.REG_SZ and os.path.isdir(vc_dir):
57 """Returns "15, path" based on the result of invoking vswhere.exe
61 result. It may be ignored when the path is not None.
71 path = subprocess.check_output([
72 os.path.join(root, "Microsoft Visual Studio", "Installer", "vswhere.exe"),
82 path = os.path.join(path, "VC", "Auxiliary", "Build")
83 if os.path.isdir(path):
84 return 15, path
106 vcvarsall = os.path.join(best_dir, "vcvarsall.bat")
107 if not os.path.isfile(vcvarsall):
144 """Return path to an MSVC executable program.
148 in the PATH environment variable. If any of those work, return an
149 absolute path that is known to exist. If none of them work, just
153 paths = os.getenv('path').split(os.pathsep)
155 fn = os.path.join(os.path.abspath(p), exe)
156 if os.path.isfile(fn):
225 self._paths = vc_env.get('path', '')
297 base, ext = os.path.splitext(p)
299 base = os.path.basename(base)
301 _, base = os.path.splitdrive(base)
302 if base.startswith((os.path.sep, os.path.altsep)):
308 return os.path.join(output_dir, base + ext_map[ext])
347 src = os.path.abspath(src)
375 h_dir = os.path.dirname(src)
376 rc_dir = os.path.dirname(obj)
380 base, _ = os.path.splitext(os.path.basename (src))
381 rc_file = os.path.join(rc_dir, base + '.rc')
464 output_filename = os.path.join(output_dir, output_filename)
479 build_temp = os.path.dirname(objects[0])
481 (dll_name, dll_ext) = os.path.splitext(
482 os.path.basename(output_filename))
483 implib_file = os.path.join(
493 output_dir = os.path.dirname(os.path.abspath(output_filename))
504 old_path = os.getenv('path')
506 os.environ['path'] = self._paths
509 os.environ['path'] = old_path
520 "don't know how to set runtime library search path for MSVC")
534 libfile = os.path.join(dir, self.library_filename(name))
535 if os.path.isfile(libfile):