Searched refs:obj_file (Results 1 – 3 of 3) sorted by relevance
/development/vndk/tools/definition-tool/tests/ |
D | test_elfdump.py | 59 obj_file = os.path.join(cls.test_dir, 'main.o') 60 target.compile(obj_file, src_file, []) 64 target.link(out_file, [obj_file], ['-ldl', '-lc', '-lstdc++']) 68 obj_file = os.path.join(cls.test_dir, 'test.o') 69 target.compile(obj_file, src_file, []) 73 target.link(out_file, [obj_file], ['-shared', '-lc']) 77 target.link(out_file, [obj_file], 83 target.link(out_file, [obj_file], 89 target.link(out_file, [obj_file], 95 target.link(out_file, [obj_file],
|
D | ndk_toolchain.py | 91 def compile(self, obj_file, src_file, cflags): argument 94 cmd = [clang, '-o', obj_file, '-c', src_file]
|
/development/vndk/tools/vtable-dumper/tests/ |
D | test_vndk_vtable_dumper.py | 98 def compile(self, obj_file, src_file, cflags, verbose=False): argument 102 cmd = [clangpp, '-o', obj_file, '-c', src_file] 207 obj_file = os.path.join(test_dir, 'test.o') 208 target.compile(obj_file, src_file, [], self.verbose) 211 target.link(out_file, [obj_file],
|