Lines Matching refs:path
46 # path, ie. no "cc -I -Idir1 -Idir2" or "cc -L -Ldir1 -Ldir2".
57 # library search path anyways.
269 strings). This does not affect any standard library search path
283 standard search path that the runtime linker may search by
347 ext = os.path.splitext(src)[1]
348 self.mkpath(os.path.dirname(obj))
483 base, ext = os.path.splitext(source)
526 retaining their original path component. That is, "foo/bar.c"
539 directories to add to the default include file search path for this
806 library file 'lib' and return the full path to that file. If
852 base, ext = os.path.splitext(src_name)
853 base = os.path.splitdrive(base)[1] # Chop off the drive
854 base = base[os.path.isabs(base):] # If abs, chop off leading /
859 base = os.path.basename(base)
860 obj_names.append(os.path.join(output_dir,
867 basename = os.path.basename(basename)
868 return os.path.join(output_dir, basename + self.shared_lib_extension)
873 basename = os.path.basename(basename)
874 return os.path.join(output_dir, basename + (self.exe_extension or ''))
885 dir, base = os.path.split(libname)
890 return os.path.join(output_dir, dir, filename)
1041 names to be added to the header file search path (-I). Returns a list
1106 (lib_dir, lib_name) = os.path.split(lib)