1999-05-03 15:29:11 +08:00
|
|
|
# This shell script emits a C file. -*- C -*-
|
|
|
|
# It does some substitutions.
|
2007-07-20 03:56:10 +08:00
|
|
|
fragment <<EOF
|
1999-05-03 15:29:11 +08:00
|
|
|
/* A vanilla emulation with no defaults
|
2015-01-01 22:15:26 +08:00
|
|
|
Copyright (C) 1991-2015 Free Software Foundation, Inc.
|
1999-05-03 15:29:11 +08:00
|
|
|
Written by Steve Chamberlain steve@cygnus.com
|
|
|
|
|
2007-07-06 22:09:45 +08:00
|
|
|
This file is part of the GNU Binutils.
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
|
|
|
|
MA 02110-1301, USA. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
#include "sysdep.h"
|
2007-04-26 22:47:00 +08:00
|
|
|
#include "bfd.h"
|
2008-02-15 11:35:53 +08:00
|
|
|
#include "bfdlink.h"
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
#include "ld.h"
|
|
|
|
#include "ldmisc.h"
|
|
|
|
#include "ldmain.h"
|
|
|
|
|
2000-07-11 11:42:41 +08:00
|
|
|
#include "ldexp.h"
|
|
|
|
#include "ldlang.h"
|
|
|
|
#include "ldfile.h"
|
|
|
|
#include "ldemul.h"
|
|
|
|
|
2003-06-27 08:38:25 +08:00
|
|
|
static void vanilla_before_parse (void)
|
1999-05-03 15:29:11 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2003-06-27 08:38:25 +08:00
|
|
|
vanilla_set_output_arch (void)
|
1999-05-03 15:29:11 +08:00
|
|
|
{
|
|
|
|
/* Set the output architecture and machine if possible */
|
|
|
|
unsigned long machine = 0;
|
2008-02-15 11:35:53 +08:00
|
|
|
bfd_set_arch_mach (link_info.output_bfd,
|
|
|
|
ldfile_output_architecture, machine);
|
1999-05-03 15:29:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static char *
|
2003-06-27 08:38:25 +08:00
|
|
|
vanilla_get_script (int *isfile)
|
1999-05-03 15:29:11 +08:00
|
|
|
{
|
|
|
|
*isfile = 0;
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
2003-06-27 08:38:25 +08:00
|
|
|
struct ld_emulation_xfer_struct ld_vanilla_emulation =
|
1999-05-03 15:29:11 +08:00
|
|
|
{
|
|
|
|
vanilla_before_parse,
|
|
|
|
syslib_default,
|
|
|
|
hll_default,
|
|
|
|
after_parse_default,
|
|
|
|
after_open_default,
|
|
|
|
after_allocation_default,
|
|
|
|
vanilla_set_output_arch,
|
|
|
|
ldemul_default_target,
|
|
|
|
before_allocation_default,
|
|
|
|
vanilla_get_script,
|
|
|
|
"vanilla",
|
2000-01-23 07:22:18 +08:00
|
|
|
"a.out-sunos-big",
|
2005-08-04 09:19:10 +08:00
|
|
|
finish_default,
|
2000-01-23 07:22:18 +08:00
|
|
|
NULL, /* create output section statements */
|
|
|
|
NULL, /* open dynamic archive */
|
|
|
|
NULL, /* place orphan */
|
|
|
|
NULL, /* set symbols */
|
|
|
|
NULL, /* parse args */
|
2003-02-28 09:32:31 +08:00
|
|
|
NULL, /* add_options */
|
|
|
|
NULL, /* handle_option */
|
2000-01-23 07:22:18 +08:00
|
|
|
NULL, /* unrecognized file */
|
|
|
|
NULL, /* list options */
|
2000-02-29 13:53:53 +08:00
|
|
|
NULL, /* recognized file */
|
2002-05-22 17:04:48 +08:00
|
|
|
NULL, /* find_potential_libraries */
|
2014-05-28 05:14:49 +08:00
|
|
|
NULL, /* new_vers_pattern */
|
|
|
|
NULL /* extra_map_file_text */
|
1999-05-03 15:29:11 +08:00
|
|
|
};
|
|
|
|
EOF
|