remove parentdir support; use INSTALL_XFORM
[deliverable/binutils-gdb.git] / ld / sh.em
CommitLineData
84d42ddd
SC
1cat >em_${EMULATION_NAME}.c <<EOF
2/* Copyright (C) 1993 Free Software Foundation, Inc.
3
4This file is part of GLD, the Gnu Linker.
5
6GLD is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 1, or (at your option)
9any later version.
10
11GLD is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with GLD; see the file COPYING. If not, write to
18the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
19
20/*
21 Written by Steve Chamberlain sac@cygnus.com
22
23 The controller which tells the gnu linker how to behave like one for
24 the Hitach SH.
25*/
26
27#include "bfd.h"
28#include "sysdep.h"
29
30#include "ld.h"
31#include "config.h"
32#include "ldemul.h"
33#include "ldfile.h"
34#include "ldmisc.h"
35
36extern boolean lang_float_flag;
37
38
39extern enum bfd_architecture ldfile_output_architecture;
40extern unsigned long ldfile_output_machine;
41extern char *ldfile_output_machine_name;
42
43extern bfd *output_bfd;
44
45
46
47static void sh_before_parse()
48{
49 ldfile_output_architecture = bfd_arch_sh;
50}
51
52static char *sh_script =
53#include "sh.x"
54;
55static char *sh_script_option_Ur =
56#include "sh.xu"
57;
58static char *sh_script_option_r =
59#include "sh.xr"
60;
61
62static char *sh_get_script()
63{
64 extern ld_config_type config;
65 if (config.relocateable_output == true &&
66 config.build_constructors == true) {
67 return sh_script_option_Ur;
68 }
69 if (config.relocateable_output) {
70 return sh_script_option_r;
71 }
72
73 return sh_script;
74}
75struct ld_emulation_xfer_struct ld_sh_emulation =
76{
77 sh_before_parse,
78 syslib_default,
79 hll_default,
80 after_parse_default,
81 after_allocation_default,
82 set_output_arch_default,
83 ldemul_default_target,
84 before_allocation_default,
85 sh_get_script,
86 "sh"
87};
88EOF
This page took 0.029226 seconds and 4 git commands to generate.