Lines Matching refs:path
23 'object': os.path.join(settings.object_dir, module + '.o'),
24 'dependencies': os.path.join(tmpdir, module + '.d'),
28 name, _ = os.path.splitext(os.path.basename(source))
30 'object': os.path.join(settings.object_dir, name + '.o'),
31 'dependencies': os.path.join(tmpdir, name + '.d'),
35 path = getattr(settings, key)
36 if os.path.exists(path):
37 os.unlink(path)
40 path = os.path.splitext(getattr(settings, key))[0] + ext
41 if os.path.exists(path):
42 os.unlink(path)
43 directory = os.path.dirname(path)
44 if not os.path.exists(directory):
47 if not os.path.exists(settings.object_dir):
51 path = output_file_map[key]['object']
52 if os.path.exists(path):
53 os.unlink(path)
55 output_file_map_path = os.path.join(tmpdir, module + '.json')
64 os.path.abspath(settings.bridge_header),
79 os.path.abspath(settings.sdk),
94 '-emit-module-path',
97 '-emit-objc-header-path',
116 _, ext = os.path.splitext(output)
120 key = os.path.splitext(settings.module_path)[0] + ext
123 for path in inputs.split():
124 depfile_content[key].add(path)
140 help='add directory to header search path')
149 help='path to the generated object files directory')
151 '--module-path', '-m',
152 help='path to the generated module file')
154 '--header-path', '-h',
155 help='path to the generated header file')
158 help='path to the Objective-C bridge header')
161 help='path to the generated depfile')