Lines Matching refs:path

23     if not os.path.exists(project_path):
28 'src': os.path.join('targets', 'curie_bsp', 'jerry_app', 'arc'),
32 'src': os.path.join('targets', 'curie_bsp', 'jerry_app', 'include'),
36 'src': os.path.join('targets', 'curie_bsp', 'jerry_app', 'quark'),
41 'link_name': os.path.join('quark', 'jerryscript')
46 src = os.path.join(jerry_path, link['src'])
47 link_name = os.path.join(project_path, link['link_name'])
48 if not os.path.islink(link_name):
58 src_dir = os.path.join(root_dir, sub_dir)
63 file_path = os.path.join(root, filename)
64 relative_path = os.path.relpath(file_path, root_dir)
79 for sub_dir in ['jerry-core', 'jerry-libm', os.path.join('targets', 'curie_bsp', 'source')]:
80 for file in find_sources(os.path.normpath(jerry_path), sub_dir):
81 path = os.path.join('jerryscript', file)
82 jerry_sources.append(path)
83 jerry_dirs.add(os.path.split(path)[0])
111 def write_file(path, content):
112 """ Writes @content into the file at specified by the @path. """
113 norm_path = os.path.normpath(path)
124 return '\n'.join(['obj-y += {0}.o'.format(os.path.splitext(fname)[0]) for fname in source_list])
137 return '\n'.join(['\t$(AT)mkdir -p {0}'.format(os.path.join('$(OUT_SRC)', path)) for path in dir_list])
143 root_kbuild_path = os.path.join(project_path, 'Kbuild.mk')
154 root_makefile_path = os.path.join(project_path, 'Makefile')
180 arc_path = os.path.join(project_path, 'arc')
181 arc_kbuild_path = os.path.join(arc_path, 'Kbuild.mk')
190 quark_kbuild_path = os.path.join(project_path, 'quark', 'Kbuild.mk')
201 os.path.join('jerryscript', 'jerry-libm', 'include'),
202 os.path.join('jerryscript', 'targets' ,'curie_bsp', 'include')
207 ] + ['-I%s' % os.path.join(project_path, 'quark', path) for path in quark_include_paths]
227 project_path = os.path.join(curie_path, 'wearable_device_sw', 'projects', project_name)
242 print('{script_name} [full or relative path of Curie_BSP]'.format(script_name=sys.argv[0]))
247 file_dir = os.path.dirname(os.path.abspath(__file__))
248 jerry_path = os.path.join(file_dir, "..", "..")
249 curie_path = os.path.join(os.getcwd(), sys.argv[1])