Searched refs:out_file (Results 1 – 3 of 3) sorted by relevance
/development/vndk/tools/definition-tool/tests/ |
D | test_elfdump.py | 63 out_file = os.path.join(cls.test_dir, 'main.out') 64 target.link(out_file, [obj_file], ['-ldl', '-lc', '-lstdc++']) 72 out_file = os.path.join(cls.test_dir, 'libtest.so') 73 target.link(out_file, [obj_file], ['-shared', '-lc']) 76 out_file = os.path.join(cls.test_dir, 'libtest-rpath.so') 77 target.link(out_file, [obj_file], 82 out_file = os.path.join(cls.test_dir, 'libtest-rpath-multi.so') 83 target.link(out_file, [obj_file], 88 out_file = os.path.join(cls.test_dir, 'libtest-runpath.so') 89 target.link(out_file, [obj_file], [all …]
|
D | ndk_toolchain.py | 103 def link(self, out_file, obj_files, ldflags): argument 113 cmd = [clang, '-o', out_file]
|
/development/vndk/tools/vtable-dumper/tests/ |
D | test_vndk_vtable_dumper.py | 111 def link(self, out_file, obj_files, ldflags, verbose=False): argument 117 cmd = [clangpp, '-o', out_file] 210 out_file = os.path.join(test_dir, 'libtest.so') 211 target.link(out_file, [obj_file], 215 run_vtable_dump(out_file, self.verbose))
|