Home
last modified time | relevance | path

Searched refs:unstripped_file (Results 1 – 3 of 3) sorted by relevance

/build/toolchain/
Drust_strip.py23 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…
Dgcc_link_wrapper.py103 [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)
Drustc_wrapper.py121 result = rust_strip.do_strip(args.strip, args.output, args.unstripped_file, args.mini_debug,