Searched refs:unstripped_file (Results 1 – 3 of 3) sorted by relevance
/ohos5.0/build/toolchain/ |
H A D | rust_strip.py | 23 def do_strip(strip, output, unstripped_file, mini_debug, clang_base_dir): argument 26 [strip, '-o', output, unstripped_file]) 28 if mini_debug and not unstripped_file.endswith(".exe") and not unstripped_file.endswith(".dll"): 29 unstripped_libfile = os.path.abspath(unstripped_file) 61 …return do_strip(args.strip, args.output, args.unstripped_file, args.mini_debug, args.clang_base_di…
|
H A D | gcc_link_wrapper.py | 103 [args.strip, '-o', args.output, args.unstripped_file])) 105 …if args.mini_debug and not args.unstripped_file.endswith(".exe") and not args.unstripped_file.ends… 106 unstripped_libfile = os.path.abspath(args.unstripped_file)
|
H A D | rustc_wrapper.py | 122 result = rust_strip.do_strip(args.strip, args.output, args.unstripped_file, args.mini_debug,
|