2000-09-21 Kazu Hirata <kazu@hxi.com>
* ldmain.c: Fix formatting. * ldmisc.c: Likewise. * ldver.c: Likewise. * ldwrite.c: Likewise.
This commit is contained in:
parent
8c6b089eed
commit
6d5e62f8b5
5 changed files with 67 additions and 68 deletions
|
@ -1,3 +1,10 @@
|
|||
2000-09-21 Kazu Hirata <kazu@hxi.com>
|
||||
|
||||
* ldmain.c: Fix formatting.
|
||||
* ldmisc.c: Likewise.
|
||||
* ldver.c: Likewise.
|
||||
* ldwrite.c: Likewise.
|
||||
|
||||
2000-09-21 Alan Modra <alan@linuxcare.com.au>
|
||||
|
||||
* ldwrite.c (clone_section): Silence gcc warnings.
|
||||
|
|
31
ld/ldmain.c
31
ld/ldmain.c
|
@ -65,7 +65,7 @@ const char *output_filename = "a.out";
|
|||
/* Name this program was invoked by. */
|
||||
char *program_name;
|
||||
|
||||
/* The file that we're creating */
|
||||
/* The file that we're creating. */
|
||||
bfd *output_bfd = 0;
|
||||
|
||||
/* Set by -G argument, for MIPS ECOFF target. */
|
||||
|
@ -130,8 +130,7 @@ static boolean unattached_reloc PARAMS ((struct bfd_link_info *,
|
|||
static boolean notice PARAMS ((struct bfd_link_info *, const char *,
|
||||
bfd *, asection *, bfd_vma));
|
||||
|
||||
static struct bfd_link_callbacks link_callbacks =
|
||||
{
|
||||
static struct bfd_link_callbacks link_callbacks = {
|
||||
add_archive_element,
|
||||
multiple_definition,
|
||||
multiple_common,
|
||||
|
@ -328,7 +327,6 @@ main (argc, argv)
|
|||
|
||||
ldemul_after_parse ();
|
||||
|
||||
|
||||
if (config.map_filename)
|
||||
{
|
||||
if (strcmp (config.map_filename, "-") == 0)
|
||||
|
@ -347,11 +345,10 @@ main (argc, argv)
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
lang_process ();
|
||||
|
||||
/* Print error messages for any missing symbols, for any warning
|
||||
symbols, and possibly multiple definitions */
|
||||
symbols, and possibly multiple definitions. */
|
||||
|
||||
if (! link_info.relocateable)
|
||||
{
|
||||
|
@ -403,8 +400,8 @@ main (argc, argv)
|
|||
einfo (_("%F%B: final close failed: %E\n"), output_bfd);
|
||||
|
||||
/* If the --force-exe-suffix is enabled, and we're making an
|
||||
executable file and it doesn't end in .exe, copy it to one which does. */
|
||||
|
||||
executable file and it doesn't end in .exe, copy it to one
|
||||
which does. */
|
||||
if (! link_info.relocateable && command_line.force_exe_suffix)
|
||||
{
|
||||
int len = strlen (output_filename);
|
||||
|
@ -572,7 +569,8 @@ set_scripts_dir ()
|
|||
size_t dirlen;
|
||||
|
||||
if (check_for_scripts_dir (SCRIPTDIR))
|
||||
return; /* We've been installed normally. */
|
||||
/* We've been installed normally. */
|
||||
return;
|
||||
|
||||
/* Look for "ldscripts" in the dir where our binary is. */
|
||||
end = strrchr (program_name, '/');
|
||||
|
@ -600,14 +598,16 @@ set_scripts_dir ()
|
|||
dir[dirlen] = '\0';
|
||||
|
||||
if (check_for_scripts_dir (dir))
|
||||
return; /* Don't free dir. */
|
||||
/* Don't free dir. */
|
||||
return;
|
||||
|
||||
/* Look for "ldscripts" in <the dir where our binary is>/../lib. */
|
||||
strcpy (dir + dirlen, "/../lib");
|
||||
if (check_for_scripts_dir (dir))
|
||||
return;
|
||||
|
||||
free (dir); /* Well, we tried. */
|
||||
/* Well, we tried. */
|
||||
free (dir);
|
||||
}
|
||||
|
||||
void
|
||||
|
@ -719,7 +719,6 @@ add_keepsyms_file (filename)
|
|||
/* This is called when BFD has decided to include an archive member in
|
||||
a link. */
|
||||
|
||||
/*ARGSUSED*/
|
||||
static boolean
|
||||
add_archive_element (info, abfd, name)
|
||||
struct bfd_link_info *info ATTRIBUTE_UNUSED;
|
||||
|
@ -834,7 +833,6 @@ add_archive_element (info, abfd, name)
|
|||
/* This is called when BFD has discovered a symbol which is defined
|
||||
multiple times. */
|
||||
|
||||
/*ARGSUSED*/
|
||||
static boolean
|
||||
multiple_definition (info, name, obfd, osec, oval, nbfd, nsec, nval)
|
||||
struct bfd_link_info *info ATTRIBUTE_UNUSED;
|
||||
|
@ -878,7 +876,6 @@ multiple_definition (info, name, obfd, osec, oval, nbfd, nsec, nval)
|
|||
or when two common symbols are found. We only do something if
|
||||
-warn-common was used. */
|
||||
|
||||
/*ARGSUSED*/
|
||||
static boolean
|
||||
multiple_common (info, name, obfd, otype, osize, nbfd, ntype, nsize)
|
||||
struct bfd_link_info *info ATTRIBUTE_UNUSED;
|
||||
|
@ -945,7 +942,6 @@ multiple_common (info, name, obfd, otype, osize, nbfd, ntype, nsize)
|
|||
entry in the linker hash table for the set. SECTION and VALUE
|
||||
represent a value which should be added to the set. */
|
||||
|
||||
/*ARGSUSED*/
|
||||
static boolean
|
||||
add_to_set (info, h, reloc, abfd, section, value)
|
||||
struct bfd_link_info *info ATTRIBUTE_UNUSED;
|
||||
|
@ -1044,7 +1040,6 @@ struct warning_callback_info
|
|||
|
||||
/* This is called when there is a reference to a warning symbol. */
|
||||
|
||||
/*ARGSUSED*/
|
||||
static boolean
|
||||
warning_callback (info, warning, symbol, abfd, section, address)
|
||||
struct bfd_link_info *info ATTRIBUTE_UNUSED;
|
||||
|
@ -1166,7 +1161,6 @@ warning_find_reloc (abfd, sec, iarg)
|
|||
|
||||
/* This is called when an undefined symbol is found. */
|
||||
|
||||
/*ARGSUSED*/
|
||||
static boolean
|
||||
undefined_symbol (info, name, abfd, section, address, fatal)
|
||||
struct bfd_link_info *info ATTRIBUTE_UNUSED;
|
||||
|
@ -1247,7 +1241,6 @@ undefined_symbol (info, name, abfd, section, address, fatal)
|
|||
|
||||
/* This is called when a reloc overflows. */
|
||||
|
||||
/*ARGSUSED*/
|
||||
static boolean
|
||||
reloc_overflow (info, name, reloc_name, addend, abfd, section, address)
|
||||
struct bfd_link_info *info ATTRIBUTE_UNUSED;
|
||||
|
@ -1271,7 +1264,6 @@ reloc_overflow (info, name, reloc_name, addend, abfd, section, address)
|
|||
|
||||
/* This is called when a dangerous relocation is made. */
|
||||
|
||||
/*ARGSUSED*/
|
||||
static boolean
|
||||
reloc_dangerous (info, message, abfd, section, address)
|
||||
struct bfd_link_info *info ATTRIBUTE_UNUSED;
|
||||
|
@ -1291,7 +1283,6 @@ reloc_dangerous (info, message, abfd, section, address)
|
|||
/* This is called when a reloc is being generated attached to a symbol
|
||||
that is not being output. */
|
||||
|
||||
/*ARGSUSED*/
|
||||
static boolean
|
||||
unattached_reloc (info, name, abfd, section, address)
|
||||
struct bfd_link_info *info ATTRIBUTE_UNUSED;
|
||||
|
|
14
ld/ldmisc.c
14
ld/ldmisc.c
|
@ -76,9 +76,9 @@ demangle (string)
|
|||
&& bfd_get_symbol_leading_char (output_bfd) == string[0])
|
||||
++string;
|
||||
|
||||
/* This is a hack for better error reporting on XCOFF, or the MS PE */
|
||||
/* format. Xcoff has a single '.', while the NT PE for PPC has '..'. */
|
||||
/* So we remove all of them. */
|
||||
/* This is a hack for better error reporting on XCOFF, or the MS PE
|
||||
format. Xcoff has a single '.', while the NT PE for PPC has
|
||||
'..'. So we remove all of them. */
|
||||
while (string[0] == '.')
|
||||
++string;
|
||||
|
||||
|
@ -202,12 +202,12 @@ vfinfo (fp, fmt, arg)
|
|||
break;
|
||||
|
||||
case 'F':
|
||||
/* error is fatal */
|
||||
/* Error is fatal. */
|
||||
fatal = true;
|
||||
break;
|
||||
|
||||
case 'P':
|
||||
/* print program name */
|
||||
/* Print program name. */
|
||||
fprintf (fp, "%s", program_name);
|
||||
break;
|
||||
|
||||
|
@ -233,7 +233,7 @@ vfinfo (fp, fmt, arg)
|
|||
break;
|
||||
|
||||
case 'S':
|
||||
/* print script file and linenumber */
|
||||
/* Print script file and linenumber. */
|
||||
if (parsing_defsym)
|
||||
fprintf (fp, "--defsym %s", lex_string);
|
||||
else if (ldfile_input_filename != NULL)
|
||||
|
@ -243,7 +243,7 @@ vfinfo (fp, fmt, arg)
|
|||
break;
|
||||
|
||||
case 'R':
|
||||
/* Print all that's interesting about a relent */
|
||||
/* Print all that's interesting about a relent. */
|
||||
{
|
||||
arelent *relent = va_arg (arg, arelent *);
|
||||
|
||||
|
|
|
@ -290,10 +290,8 @@ build_link_order (statement)
|
|||
|
||||
/* Call BFD to write out the linked file. */
|
||||
|
||||
|
||||
/**********************************************************************/
|
||||
|
||||
|
||||
/* Wander around the input sections, make sure that
|
||||
we'll never try and create an output section with more relocs
|
||||
than will fit.. Do this by always assuming the worst case, and
|
||||
|
@ -365,6 +363,7 @@ ds (s)
|
|||
}
|
||||
printf ("\n");
|
||||
}
|
||||
|
||||
dump (s, a1, a2)
|
||||
char *s;
|
||||
asection *a1;
|
||||
|
@ -520,7 +519,9 @@ split_sections (abfd, info)
|
|||
}
|
||||
sanity_check (abfd);
|
||||
}
|
||||
|
||||
/**********************************************************************/
|
||||
|
||||
void
|
||||
ldwrite ()
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue