Lines Matching refs:path
105 self.mkpath(os.path.dirname(output_file))
130 self.mkpath(os.path.dirname(output_filename))
163 output_filename = os.path.join(output_dir, output_filename)
174 self.mkpath(os.path.dirname(output_filename))
187 if os.path.basename(linker[0]) == "env":
192 if os.path.basename(linker[i]) == 'ld_so_aix':
235 compiler = os.path.basename(sysconfig.get_config_var("CC"))
301 shared = os.path.join(dir, shared_f)
302 dylib = os.path.join(dir, dylib_f)
303 static = os.path.join(dir, static_f)
304 xcode_stub = os.path.join(dir, xcode_stub_f)
310 shared = os.path.join(sysroot, dir[1:], shared_f)
311 dylib = os.path.join(sysroot, dir[1:], dylib_f)
312 static = os.path.join(sysroot, dir[1:], static_f)
313 xcode_stub = os.path.join(sysroot, dir[1:], xcode_stub_f)
319 if os.path.exists(dylib):
321 elif os.path.exists(xcode_stub):
323 elif os.path.exists(shared):
325 elif os.path.exists(static):