Lines Matching refs:args
83 args = parser.parse_args()
88 if is_static_link(args.command):
89 command = update_crt(args.command)
90 if args.clang_rt_dso_path is not None:
93 command = args.command
95 command, env=fast_env, map_file=args.map_file)
100 if args.strip:
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.endswith(".dll"):
106 unstripped_libfile = os.path.abspath(args.unstripped_file)
112 ['python3', script_path, '--unstripped-path', unstripped_libfile, '--stripped-path', args.output,
113 '--root-path', ohos_root_path, '--clang-base-dir', args.clang_base_dir]))