Searched refs:unstripped_file (Results 1 – 3 of 3) sorted by relevance
/build/toolchain/ |
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"): 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…
|
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"): 106 unstripped_libfile = os.path.abspath(args.unstripped_file)
|
D | rustc_wrapper.py | 121 result = rust_strip.do_strip(args.strip, args.output, args.unstripped_file, args.mini_debug,
|