1 /* Copyright (C) 1991 Free Software Foundation, Inc.
3 This file is part of GLD, the Gnu Linker.
5 GLD is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 1, or (at your option)
10 GLD is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with GLD; see the file COPYING. If not, write to
17 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
25 * emulate the original gld
27 * Written by Steve Chamberlain steve@cygnus.com
41 extern boolean lang_float_flag
;
44 extern enum bfd_architecture ldfile_output_architecture
;
45 extern unsigned long ldfile_output_machine
;
46 extern char *ldfile_output_machine_name
;
48 extern bfd
*output_bfd
;
52 static void gld_before_parse()
54 ldfile_add_library_path("/lib");
55 ldfile_add_library_path("/usr/lib");
56 ldfile_add_library_path("/usr/local/lib/lib");
67 gld_after_allocation()
73 gld_before_allocation()
82 /* Set the output architecture and machine if possible */
83 bfd_set_arch_mach(output_bfd
, ldfile_output_architecture
, ldfile_output_machine
);
89 char *from_outside
= getenv(TARGET_ENVIRON
);
90 if (from_outside
!= (char *)NULL
)
98 info("%S SYSLIB ignored\n");
105 info("%S HLL ignored\n");
108 static char *gld_script
=
112 static char *gld_script_option_Ur
=
113 #include "ld-gld-Ur.x"
116 static char *gld_script_option_r
=
117 #include "ld-gld-r.x"
120 static char *gld_get_script()
122 extern ld_config_type config
;
123 if (config
.relocateable_output
== true &&
124 config
.build_constructors
== true) {
125 return gld_script_option_Ur
;
127 if (config
.relocateable_output
) {
128 return gld_script_option_r
;
133 struct ld_emulation_xfer_struct ld_gld_emulation
=
139 gld_after_allocation
,
142 gld_before_allocation
,