This is a test to see if the file is still locked.
[deliverable/binutils-gdb.git] / ld / ld-gld.c
CommitLineData
2fa0b342
DHW
1/* Copyright (C) 1991 Free Software Foundation, Inc.
2
3This file is part of GLD, the Gnu Linker.
4
5GLD is free software; you can redistribute it and/or modify
6it under the terms of the GNU General Public License as published by
7the Free Software Foundation; either version 1, or (at your option)
8any later version.
9
10GLD is distributed in the hope that it will be useful,
11but WITHOUT ANY WARRANTY; without even the implied warranty of
12MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13GNU General Public License for more details.
14
15You should have received a copy of the GNU General Public License
16along with GLD; see the file COPYING. If not, write to
17the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
18
19/*
20 * $Id$
21 *
2fa0b342
DHW
22*/
23
24/*
25 * emulate the original gld
26 *
27 * Written by Steve Chamberlain steve@cygnus.com
28 */
29
30
31#include "sysdep.h"
32#include "bfd.h"
33
34
35#include "ld.h"
36#include "config.h"
37#include "ld-emul.h"
38#include "ldfile.h"
39#include "ldmisc.h"
40
41extern boolean lang_float_flag;
42
43
44extern enum bfd_architecture ldfile_output_architecture;
45extern unsigned long ldfile_output_machine;
46extern char *ldfile_output_machine_name;
47
48extern bfd *output_bfd;
49
50
51
52static void gld_before_parse()
53{
54 ldfile_add_library_path("/lib");
55 ldfile_add_library_path("/usr/lib");
56 ldfile_add_library_path("/usr/local/lib/lib");
2fa0b342
DHW
57}
58
59
60static void
61gld_after_parse()
62{
63
64}
65
66static void
67gld_after_allocation()
68{
69
70}
71
72static void
73gld_before_allocation()
74{
75
76}
77
78
79static void
80gld_set_output_arch()
81{
82 /* Set the output architecture and machine if possible */
a37cc0c0 83 bfd_set_arch_mach(output_bfd, ldfile_output_architecture, ldfile_output_machine);
2fa0b342
DHW
84}
85
86static char *
87gld_choose_target()
88{
89 char *from_outside = getenv(TARGET_ENVIRON);
90 if (from_outside != (char *)NULL)
91 return from_outside;
92 return GLD_TARGET;
93}
94
95static void
96gld_syslib()
97{
98 info("%S SYSLIB ignored\n");
99}
100
101static void
102gld_hll(ignore)
103char *ignore;
104{
105 info("%S HLL ignored\n");
106}
107
1418c83b
SC
108static char *gld_script =
109#include "ld-gld.x"
110;
111
112static char *gld_script_option_Ur =
113#include "ld-gld-Ur.x"
114;
115
116static char *gld_script_option_r =
117#include "ld-gld-r.x"
118;
2fa0b342
DHW
119
120static char *gld_get_script()
121{
122 extern ld_config_type config;
123 if (config.relocateable_output == true &&
124 config.build_constructors == true) {
125 return gld_script_option_Ur;
126 }
127 if (config.relocateable_output) {
128 return gld_script_option_r;
129 }
130
131 return gld_script;
132}
133struct ld_emulation_xfer_struct ld_gld_emulation =
134{
135 gld_before_parse,
136 gld_syslib,
137 gld_hll,
138 gld_after_parse,
139 gld_after_allocation,
140 gld_set_output_arch,
141 gld_choose_target,
142 gld_before_allocation,
143 gld_get_script,
144};
145
This page took 0.061011 seconds and 4 git commands to generate.