Home | History | Annotate | Download | only in ld

Lines Matching refs:command_line

901 	  command_line.cref = true;
905 command_line.force_common_definition = true;
908 command_line.force_group_allocation = true;
932 command_line.interpreter = optarg;
942 command_line.endian = ENDIAN_BIG;
945 command_line.endian = ENDIAN_LITTLE;
948 command_line.embedded_relocs = true;
999 if (command_line.auxiliary_filters == NULL)
1001 command_line.auxiliary_filters = (char **)
1003 command_line.auxiliary_filters[0] = optarg;
1004 command_line.auxiliary_filters[1] = NULL;
1012 for (p = command_line.auxiliary_filters; *p != NULL; p++)
1014 command_line.auxiliary_filters = (char **)
1015 xrealloc (command_line.auxiliary_filters,
1017 command_line.auxiliary_filters[c] = optarg;
1018 command_line.auxiliary_filters[c + 1] = NULL;
1022 command_line.filter_shlib = optarg;
1025 command_line.force_exe_suffix = true;
1168 command_line.warn_mismatch = false;
1171 command_line.warn_search_mismatch = false;
1199 command_line.out_implib_filename = xstrdup (optarg);
1207 command_line.print_output_format = true;
1269 if (command_line.rpath == NULL)
1270 command_line.rpath = xstrdup (optarg);
1273 size_t rpath_len = strlen (command_line.rpath);
1276 char *cp = command_line.rpath;
1297 sprintf (buf, "%s%c%s", command_line.rpath,
1299 free (command_line.rpath);
1300 command_line.rpath = buf;
1305 if (command_line.rpath_link == NULL)
1306 command_line.rpath_link = xstrdup (optarg);
1311 buf = (char *) xmalloc (strlen (command_line.rpath_link)
1314 sprintf (buf, "%s%c%s", command_line.rpath_link,
1316 free (command_line.rpath_link);
1317 command_line.rpath_link = buf;
1378 if (optarg[0] == '\0' && command_line.soname
1379 && command_line.soname[0])
1382 command_line.soname = optarg;
1403 if (command_line.section_ordering_file != NULL
1404 && strcmp (optarg, command_line.section_ordering_file) != 0)
1406 command_line.section_ordering_file = optarg;
1442 command_line.default_script = optarg;
1572 command_line.version_exports_section = optarg;
1714 command_line.check_section_addresses = 1;
1717 command_line.check_section_addresses = 0;
1720 command_line.accept_unknown_input_arch = true;
1723 command_line.accept_unknown_input_arch = false;
1812 command_line.print_memory_usage = true;
1932 if (command_line.soname && command_line.soname[0] == '\0')
1935 command_line.soname = NULL;
1960 && command_line.check_section_addresses < 0)
1961 command_line.check_section_addresses = 0;
2036 if (command_line.filter_shlib)
2038 if (command_line.auxiliary_filters)