Home | History | Annotate | Download | only in ld

Lines Matching refs:command_line

910 	  command_line.cref = true;
914 command_line.force_common_definition = true;
917 command_line.force_group_allocation = true;
941 command_line.interpreter = optarg;
951 command_line.endian = ENDIAN_BIG;
954 command_line.endian = ENDIAN_LITTLE;
957 command_line.embedded_relocs = true;
1008 if (command_line.auxiliary_filters == NULL)
1010 command_line.auxiliary_filters = (char **)
1012 command_line.auxiliary_filters[0] = optarg;
1013 command_line.auxiliary_filters[1] = NULL;
1021 for (p = command_line.auxiliary_filters; *p != NULL; p++)
1023 command_line.auxiliary_filters = (char **)
1024 xrealloc (command_line.auxiliary_filters,
1026 command_line.auxiliary_filters[c] = optarg;
1027 command_line.auxiliary_filters[c + 1] = NULL;
1031 command_line.filter_shlib = optarg;
1034 command_line.force_exe_suffix = true;
1177 command_line.warn_mismatch = false;
1180 command_line.warn_search_mismatch = false;
1208 command_line.out_implib_filename = xstrdup (optarg);
1216 command_line.print_output_format = true;
1278 if (command_line.rpath == NULL)
1279 command_line.rpath = xstrdup (optarg);
1282 size_t rpath_len = strlen (command_line.rpath);
1285 char *cp = command_line.rpath;
1306 sprintf (buf, "%s%c%s", command_line.rpath,
1308 free (command_line.rpath);
1309 command_line.rpath = buf;
1314 if (command_line.rpath_link == NULL)
1315 command_line.rpath_link = xstrdup (optarg);
1320 buf = (char *) xmalloc (strlen (command_line.rpath_link)
1323 sprintf (buf, "%s%c%s", command_line.rpath_link,
1325 free (command_line.rpath_link);
1326 command_line.rpath_link = buf;
1387 if (optarg[0] == '\0' && command_line.soname
1388 && command_line.soname[0])
1391 command_line.soname = optarg;
1412 if (command_line.section_ordering_file != NULL
1413 && strcmp (optarg, command_line.section_ordering_file) != 0)
1415 command_line.section_ordering_file = optarg;
1451 command_line.default_script = optarg;
1583 command_line.version_exports_section = optarg;
1725 command_line.check_section_addresses = 1;
1728 command_line.check_section_addresses = 0;
1731 command_line.accept_unknown_input_arch = true;
1734 command_line.accept_unknown_input_arch = false;
1823 command_line.print_memory_usage = true;
1943 if (command_line.soname && command_line.soname[0] == '\0')
1946 command_line.soname = NULL;
1971 && command_line.check_section_addresses < 0)
1972 command_line.check_section_addresses = 0;
2047 if (command_line.filter_shlib)
2049 if (command_line.auxiliary_filters)