mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-01 20:12:01 +08:00
* addr2line.c: Convert to ISO C90 prototypes, change PTR, remove
unneeded (void *) casts. * ar.c: Likewise. * arlex.l: Likewise. * arparse.y: Likewise. * arsup.c: Likewise. * binemul.c: Likewise. * binemul.h: Likewise. * bucomm.c: Likewise. * bucomm.h: Likewise. * budbg.h: Likewise. * budemang.c: Likewise. * budemang.h: Likewise. * coffdump.c: Likewise. * coffgrok.c: Likewise. * cxxfilt.c: Likewise. * debug.c: Likewise. * debug.h: Likewise. * deflex.l: Likewise. * dlltool.c: Likewise. * dlltool.h: Likewise. * dllwrap.c: Likewise. * emul_aix.c: Likewise. * filemode.c: Likewise. * ieee.c: Likewise. * nlmconv.c: Likewise. * nlmconv.h: Likewise. * nlmheader.y: Likewise. * nm.c: Likewise. * prdbg.c: Likewise. * rclex.l: Likewise. * rcparse.y: Likewise. * rdcoff.c: Likewise. * rddbg.c: Likewise. * rename.c: Likewise. * resbin.c: Likewise. * rescoff.c: Likewise. * resrc.c: Likewise. * size.c: Likewise. * srconv.c: Likewise. * stabs.c: Likewise. * strings.c: Likewise. * sysdump.c: Likewise. * sysinfo.y: Likewise. * syslex.l: Likewise. * unwind-ia64.c: Likewise. * unwind-ia64.h: Likewise. * version.c: Likewise. * windres.c: Likewise. * windres.h: Likewise. * winduni.c: Likewise. * wrstabs.c: Likewise.
This commit is contained in:
@ -1,5 +1,5 @@
|
||||
/* Binutils emulation layer.
|
||||
Copyright 2002 Free Software Foundation, Inc.
|
||||
Copyright 2002, 2003 Free Software Foundation, Inc.
|
||||
Written by Tom Rix, Redhat.
|
||||
|
||||
This file is part of GNU Binutils.
|
||||
@ -34,24 +34,17 @@ static bfd_boolean X32 = TRUE;
|
||||
/* Whether to include 64 bit objects. */
|
||||
static bfd_boolean X64 = FALSE;
|
||||
|
||||
static void ar_emul_aix_usage
|
||||
PARAMS ((FILE *));
|
||||
static bfd_boolean ar_emul_aix_append
|
||||
PARAMS ((bfd **, char *, bfd_boolean));
|
||||
static bfd_boolean ar_emul_aix5_append
|
||||
PARAMS ((bfd **, char *, bfd_boolean));
|
||||
static bfd_boolean ar_emul_aix_replace
|
||||
PARAMS ((bfd **, char *, bfd_boolean));
|
||||
static bfd_boolean ar_emul_aix5_replace
|
||||
PARAMS ((bfd **, char *, bfd_boolean));
|
||||
static bfd_boolean ar_emul_aix_parse_arg
|
||||
PARAMS ((char *));
|
||||
static void ar_emul_aix_usage (FILE *);
|
||||
static bfd_boolean ar_emul_aix_append (bfd **, char *, bfd_boolean);
|
||||
static bfd_boolean ar_emul_aix5_append (bfd **, char *, bfd_boolean);
|
||||
static bfd_boolean ar_emul_aix_replace (bfd **, char *, bfd_boolean);
|
||||
static bfd_boolean ar_emul_aix5_replace (bfd **, char *, bfd_boolean);
|
||||
static bfd_boolean ar_emul_aix_parse_arg (char *);
|
||||
static bfd_boolean ar_emul_aix_internal
|
||||
PARAMS ((bfd **, char *, bfd_boolean, const char *, bfd_boolean));
|
||||
(bfd **, char *, bfd_boolean, const char *, bfd_boolean);
|
||||
|
||||
static void
|
||||
ar_emul_aix_usage (fp)
|
||||
FILE *fp;
|
||||
ar_emul_aix_usage (FILE *fp)
|
||||
{
|
||||
AR_EMUL_USAGE_PRINT_OPTION_HEADER (fp);
|
||||
/* xgettext:c-format */
|
||||
@ -62,12 +55,8 @@ ar_emul_aix_usage (fp)
|
||||
}
|
||||
|
||||
static bfd_boolean
|
||||
ar_emul_aix_internal (after_bfd, file_name, verbose, target_name, is_append)
|
||||
bfd **after_bfd;
|
||||
char *file_name;
|
||||
bfd_boolean verbose;
|
||||
const char * target_name;
|
||||
bfd_boolean is_append;
|
||||
ar_emul_aix_internal (bfd **after_bfd, char *file_name, bfd_boolean verbose,
|
||||
const char * target_name, bfd_boolean is_append)
|
||||
{
|
||||
bfd *temp;
|
||||
bfd *try_bfd;
|
||||
@ -107,48 +96,35 @@ ar_emul_aix_internal (after_bfd, file_name, verbose, target_name, is_append)
|
||||
|
||||
|
||||
static bfd_boolean
|
||||
ar_emul_aix_append (after_bfd, file_name, verbose)
|
||||
bfd **after_bfd;
|
||||
char *file_name;
|
||||
bfd_boolean verbose;
|
||||
ar_emul_aix_append (bfd **after_bfd, char *file_name, bfd_boolean verbose)
|
||||
{
|
||||
return ar_emul_aix_internal (after_bfd, file_name, verbose,
|
||||
"aixcoff64-rs6000", TRUE);
|
||||
}
|
||||
|
||||
static bfd_boolean
|
||||
ar_emul_aix5_append (after_bfd, file_name, verbose)
|
||||
bfd **after_bfd;
|
||||
char *file_name;
|
||||
bfd_boolean verbose;
|
||||
ar_emul_aix5_append (bfd **after_bfd, char *file_name, bfd_boolean verbose)
|
||||
{
|
||||
return ar_emul_aix_internal (after_bfd, file_name, verbose,
|
||||
"aix5coff64-rs6000", TRUE);
|
||||
}
|
||||
|
||||
static bfd_boolean
|
||||
ar_emul_aix_replace (after_bfd, file_name, verbose)
|
||||
bfd **after_bfd;
|
||||
char *file_name;
|
||||
bfd_boolean verbose;
|
||||
ar_emul_aix_replace (bfd **after_bfd, char *file_name, bfd_boolean verbose)
|
||||
{
|
||||
return ar_emul_aix_internal (after_bfd, file_name, verbose,
|
||||
"aixcoff64-rs6000", FALSE);
|
||||
}
|
||||
|
||||
static bfd_boolean
|
||||
ar_emul_aix5_replace (after_bfd, file_name, verbose)
|
||||
bfd **after_bfd;
|
||||
char *file_name;
|
||||
bfd_boolean verbose;
|
||||
ar_emul_aix5_replace (bfd **after_bfd, char *file_name, bfd_boolean verbose)
|
||||
{
|
||||
return ar_emul_aix_internal (after_bfd, file_name, verbose,
|
||||
"aix5coff64-rs6000", FALSE);
|
||||
}
|
||||
|
||||
static bfd_boolean
|
||||
ar_emul_aix_parse_arg (arg)
|
||||
char *arg;
|
||||
ar_emul_aix_parse_arg (char *arg)
|
||||
{
|
||||
if (strncmp (arg, "-X32_64", 6) == 0)
|
||||
{
|
||||
|
Reference in New Issue
Block a user