a863526b4fbe2bcf35dd941b5abfa4e9aa628151
[deliverable/binutils-gdb.git] / ld / emultempl / pe.em
1 # This shell script emits a C file. -*- C -*-
2 # It does some substitutions.
3 if [ -z "$MACHINE" ]; then
4 OUTPUT_ARCH=${ARCH}
5 else
6 OUTPUT_ARCH=${ARCH}:${MACHINE}
7 fi
8 rm -f e${EMULATION_NAME}.c
9 (echo;echo;echo;echo;echo)>e${EMULATION_NAME}.c # there, now line numbers match ;-)
10 cat >>e${EMULATION_NAME}.c <<EOF
11 /* This file is part of GLD, the Gnu Linker.
12 Copyright 1995, 1996, 1997, 1998, 1999, 2000, 2001
13 Free Software Foundation, Inc.
14
15 This program is free software; you can redistribute it and/or modify
16 it under the terms of the GNU General Public License as published by
17 the Free Software Foundation; either version 2 of the License, or
18 (at your option) any later version.
19
20 This program is distributed in the hope that it will be useful,
21 but WITHOUT ANY WARRANTY; without even the implied warranty of
22 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 GNU General Public License for more details.
24
25 You should have received a copy of the GNU General Public License
26 along with this program; if not, write to the Free Software
27 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
28
29 /* For WINDOWS_NT */
30 /* The original file generated returned different default scripts depending
31 on whether certain switches were set, but these switches pertain to the
32 Linux system and that particular version of coff. In the NT case, we
33 only determine if the subsystem is console or windows in order to select
34 the correct entry point by default. */
35
36 #define TARGET_IS_${EMULATION_NAME}
37
38 /* Do this before including bfd.h, so we prototype the right functions. */
39 #ifdef TARGET_IS_arm_epoc_pe
40 #define bfd_arm_pe_allocate_interworking_sections \
41 bfd_arm_epoc_pe_allocate_interworking_sections
42 #define bfd_arm_pe_get_bfd_for_interworking \
43 bfd_arm_epoc_pe_get_bfd_for_interworking
44 #define bfd_arm_pe_process_before_allocation \
45 bfd_arm_epoc_pe_process_before_allocation
46 #endif
47
48 #include "bfd.h"
49 #include "sysdep.h"
50 #include "bfdlink.h"
51 #include "getopt.h"
52 #include "libiberty.h"
53 #include "ld.h"
54 #include "ldmain.h"
55 #include "ldgram.h"
56 #include "ldexp.h"
57 #include "ldlang.h"
58 #include "ldfile.h"
59 #include "ldemul.h"
60 #include "ldlex.h"
61 #include "ldmisc.h"
62 #include "ldctor.h"
63 #include "coff/internal.h"
64
65 /* FIXME: This is a BFD internal header file, and we should not be
66 using it here. */
67 #include "../bfd/libcoff.h"
68
69 #include "deffile.h"
70 #include "pe-dll.h"
71
72 #include <ctype.h>
73
74 /* Permit the emulation parameters to override the default section
75 alignment by setting OVERRIDE_SECTION_ALIGNMENT. FIXME: This makes
76 it seem that include/coff/internal.h should not define
77 PE_DEF_SECTION_ALIGNMENT. */
78 #if PE_DEF_SECTION_ALIGNMENT != ${OVERRIDE_SECTION_ALIGNMENT:-PE_DEF_SECTION_ALIGNMENT}
79 #undef PE_DEF_SECTION_ALIGNMENT
80 #define PE_DEF_SECTION_ALIGNMENT ${OVERRIDE_SECTION_ALIGNMENT}
81 #endif
82
83 #if defined(TARGET_IS_i386pe)
84 #define DLL_SUPPORT
85 #endif
86 #if defined(TARGET_IS_shpe) || defined(TARGET_IS_mipspe) || defined(TARGET_IS_armpe)
87 #define DLL_SUPPORT
88 #endif
89
90 #if defined(TARGET_IS_i386pe) || ! defined(DLL_SUPPORT)
91 #define PE_DEF_SUBSYSTEM 3
92 #else
93 #undef NT_EXE_IMAGE_BASE
94 #undef PE_DEF_SECTION_ALIGNMENT
95 #undef PE_DEF_FILE_ALIGNMENT
96 #define NT_EXE_IMAGE_BASE 0x00010000
97 #ifdef TARGET_IS_armpe
98 #define PE_DEF_SECTION_ALIGNMENT 0x00001000
99 #define PE_DEF_SUBSYSTEM 9
100 #else
101 #define PE_DEF_SECTION_ALIGNMENT 0x00000400
102 #define PE_DEF_SUBSYSTEM 2
103 #endif
104 #define PE_DEF_FILE_ALIGNMENT 0x00000200
105 #endif
106
107 static void gld_${EMULATION_NAME}_set_symbols PARAMS ((void));
108 static void gld_${EMULATION_NAME}_after_open PARAMS ((void));
109 static void gld_${EMULATION_NAME}_before_parse PARAMS ((void));
110 static void gld_${EMULATION_NAME}_after_parse PARAMS ((void));
111 static void gld_${EMULATION_NAME}_before_allocation PARAMS ((void));
112 static asection *output_prev_sec_find
113 PARAMS ((lang_output_section_statement_type *));
114 static boolean gld_${EMULATION_NAME}_place_orphan
115 PARAMS ((lang_input_statement_type *, asection *));
116 static char *gld_${EMULATION_NAME}_get_script PARAMS ((int *));
117 static int gld_${EMULATION_NAME}_parse_args PARAMS ((int, char **));
118 static void gld_${EMULATION_NAME}_finish PARAMS ((void));
119 static boolean gld_${EMULATION_NAME}_open_dynamic_archive
120 PARAMS ((const char *, search_dirs_type *, lang_input_statement_type *));
121 static void gld_${EMULATION_NAME}_list_options PARAMS ((FILE *));
122 static void set_pe_name PARAMS ((char *, long));
123 static void set_pe_subsystem PARAMS ((void));
124 static void set_pe_value PARAMS ((char *));
125 static void set_pe_stack_heap PARAMS ((char *, char *));
126
127 #ifdef DLL_SUPPORT
128 static boolean pe_undef_cdecl_match
129 PARAMS ((struct bfd_link_hash_entry *, PTR));
130 static void pe_fixup_stdcalls PARAMS ((void));
131 static int make_import_fixup PARAMS ((arelent *, asection *));
132 static void pe_find_data_imports PARAMS ((void));
133 #endif
134
135 static boolean pr_sym PARAMS ((struct bfd_hash_entry *, PTR string));
136 static boolean gld_${EMULATION_NAME}_unrecognized_file
137 PARAMS ((lang_input_statement_type *));
138 static boolean gld_${EMULATION_NAME}_recognized_file
139 PARAMS ((lang_input_statement_type *));
140 static int gld_${EMULATION_NAME}_find_potential_libraries
141 PARAMS ((char *, lang_input_statement_type *));
142
143
144 static struct internal_extra_pe_aouthdr pe;
145 static int dll;
146 static int support_old_code = 0;
147 static char * thumb_entry_symbol = NULL;
148 static lang_assignment_statement_type *image_base_statement = 0;
149
150 #ifdef DLL_SUPPORT
151 static int pe_enable_stdcall_fixup = -1; /* 0=disable 1=enable */
152 static char *pe_out_def_filename = NULL;
153 static char *pe_implib_filename = NULL;
154 static int pe_enable_auto_image_base = 0;
155 static char *pe_dll_search_prefix = NULL;
156 static char *pe_data_import_dll = NULL;
157 #endif
158
159 extern const char *output_filename;
160
161 static void
162 gld_${EMULATION_NAME}_before_parse()
163 {
164 const bfd_arch_info_type *arch = bfd_scan_arch ("${OUTPUT_ARCH}");
165 if (arch)
166 {
167 ldfile_output_architecture = arch->arch;
168 ldfile_output_machine = arch->mach;
169 ldfile_output_machine_name = arch->printable_name;
170 }
171 else
172 ldfile_output_architecture = bfd_arch_${ARCH};
173 output_filename = "${EXECUTABLE_NAME:-a.exe}";
174 #ifdef DLL_SUPPORT
175 config.dynamic_link = true;
176 config.has_shared = 1;
177 /* link_info.pei386_auto_import = true; */
178
179 #if (PE_DEF_SUBSYSTEM == 9) || (PE_DEF_SUBSYSTEM == 2)
180 #if defined TARGET_IS_mipspe || defined TARGET_IS_armpe
181 lang_add_entry ("WinMainCRTStartup", 1);
182 #else
183 lang_add_entry ("_WinMainCRTStartup", 1);
184 #endif
185 #endif
186 #endif
187 }
188 \f
189 /* PE format extra command line options. */
190
191 /* Used for setting flags in the PE header. */
192 #define OPTION_BASE_FILE (300 + 1)
193 #define OPTION_DLL (OPTION_BASE_FILE + 1)
194 #define OPTION_FILE_ALIGNMENT (OPTION_DLL + 1)
195 #define OPTION_IMAGE_BASE (OPTION_FILE_ALIGNMENT + 1)
196 #define OPTION_MAJOR_IMAGE_VERSION (OPTION_IMAGE_BASE + 1)
197 #define OPTION_MAJOR_OS_VERSION (OPTION_MAJOR_IMAGE_VERSION + 1)
198 #define OPTION_MAJOR_SUBSYSTEM_VERSION (OPTION_MAJOR_OS_VERSION + 1)
199 #define OPTION_MINOR_IMAGE_VERSION (OPTION_MAJOR_SUBSYSTEM_VERSION + 1)
200 #define OPTION_MINOR_OS_VERSION (OPTION_MINOR_IMAGE_VERSION + 1)
201 #define OPTION_MINOR_SUBSYSTEM_VERSION (OPTION_MINOR_OS_VERSION + 1)
202 #define OPTION_SECTION_ALIGNMENT (OPTION_MINOR_SUBSYSTEM_VERSION + 1)
203 #define OPTION_STACK (OPTION_SECTION_ALIGNMENT + 1)
204 #define OPTION_SUBSYSTEM (OPTION_STACK + 1)
205 #define OPTION_HEAP (OPTION_SUBSYSTEM + 1)
206 #define OPTION_SUPPORT_OLD_CODE (OPTION_HEAP + 1)
207 #define OPTION_OUT_DEF (OPTION_SUPPORT_OLD_CODE + 1)
208 #define OPTION_EXPORT_ALL (OPTION_OUT_DEF + 1)
209 #define OPTION_EXCLUDE_SYMBOLS (OPTION_EXPORT_ALL + 1)
210 #define OPTION_KILL_ATS (OPTION_EXCLUDE_SYMBOLS + 1)
211 #define OPTION_STDCALL_ALIASES (OPTION_KILL_ATS + 1)
212 #define OPTION_ENABLE_STDCALL_FIXUP (OPTION_STDCALL_ALIASES + 1)
213 #define OPTION_DISABLE_STDCALL_FIXUP (OPTION_ENABLE_STDCALL_FIXUP + 1)
214 #define OPTION_IMPLIB_FILENAME (OPTION_DISABLE_STDCALL_FIXUP + 1)
215 #define OPTION_THUMB_ENTRY (OPTION_IMPLIB_FILENAME + 1)
216 #define OPTION_WARN_DUPLICATE_EXPORTS (OPTION_THUMB_ENTRY + 1)
217 #define OPTION_IMP_COMPAT (OPTION_WARN_DUPLICATE_EXPORTS + 1)
218 #define OPTION_ENABLE_AUTO_IMAGE_BASE (OPTION_IMP_COMPAT + 1)
219 #define OPTION_DISABLE_AUTO_IMAGE_BASE (OPTION_ENABLE_AUTO_IMAGE_BASE + 1)
220 #define OPTION_DLL_SEARCH_PREFIX (OPTION_DISABLE_AUTO_IMAGE_BASE + 1)
221 #define OPTION_NO_DEFAULT_EXCLUDES (OPTION_DLL_SEARCH_PREFIX + 1)
222 #define OPTION_DLL_ENABLE_AUTO_IMPORT (OPTION_NO_DEFAULT_EXCLUDES + 1)
223 #define OPTION_DLL_DISABLE_AUTO_IMPORT (OPTION_DLL_ENABLE_AUTO_IMPORT + 1)
224 #define OPTION_ENABLE_EXTRA_PE_DEBUG (OPTION_DLL_DISABLE_AUTO_IMPORT + 1)
225
226 static struct option longopts[] = {
227 /* PE options */
228 {"base-file", required_argument, NULL, OPTION_BASE_FILE},
229 {"dll", no_argument, NULL, OPTION_DLL},
230 {"file-alignment", required_argument, NULL, OPTION_FILE_ALIGNMENT},
231 {"heap", required_argument, NULL, OPTION_HEAP},
232 {"image-base", required_argument, NULL, OPTION_IMAGE_BASE},
233 {"major-image-version", required_argument, NULL, OPTION_MAJOR_IMAGE_VERSION},
234 {"major-os-version", required_argument, NULL, OPTION_MAJOR_OS_VERSION},
235 {"major-subsystem-version", required_argument, NULL, OPTION_MAJOR_SUBSYSTEM_VERSION},
236 {"minor-image-version", required_argument, NULL, OPTION_MINOR_IMAGE_VERSION},
237 {"minor-os-version", required_argument, NULL, OPTION_MINOR_OS_VERSION},
238 {"minor-subsystem-version", required_argument, NULL, OPTION_MINOR_SUBSYSTEM_VERSION},
239 {"section-alignment", required_argument, NULL, OPTION_SECTION_ALIGNMENT},
240 {"stack", required_argument, NULL, OPTION_STACK},
241 {"subsystem", required_argument, NULL, OPTION_SUBSYSTEM},
242 {"support-old-code", no_argument, NULL, OPTION_SUPPORT_OLD_CODE},
243 {"thumb-entry", required_argument, NULL, OPTION_THUMB_ENTRY},
244 #ifdef DLL_SUPPORT
245 /* getopt allows abbreviations, so we do this to stop it from treating -o
246 as an abbreviation for this option */
247 {"output-def", required_argument, NULL, OPTION_OUT_DEF},
248 {"output-def", required_argument, NULL, OPTION_OUT_DEF},
249 {"export-all-symbols", no_argument, NULL, OPTION_EXPORT_ALL},
250 {"exclude-symbols", required_argument, NULL, OPTION_EXCLUDE_SYMBOLS},
251 {"kill-at", no_argument, NULL, OPTION_KILL_ATS},
252 {"add-stdcall-alias", no_argument, NULL, OPTION_STDCALL_ALIASES},
253 {"enable-stdcall-fixup", no_argument, NULL, OPTION_ENABLE_STDCALL_FIXUP},
254 {"disable-stdcall-fixup", no_argument, NULL, OPTION_DISABLE_STDCALL_FIXUP},
255 {"out-implib", required_argument, NULL, OPTION_IMPLIB_FILENAME},
256 {"warn-duplicate-exports", no_argument, NULL, OPTION_WARN_DUPLICATE_EXPORTS},
257 {"compat-implib", no_argument, NULL, OPTION_IMP_COMPAT},
258 {"enable-auto-image-base", no_argument, NULL, OPTION_ENABLE_AUTO_IMAGE_BASE},
259 {"disable-auto-image-base", no_argument, NULL, OPTION_DISABLE_AUTO_IMAGE_BASE},
260 {"dll-search-prefix", required_argument, NULL, OPTION_DLL_SEARCH_PREFIX},
261 {"no-default-excludes", no_argument, NULL, OPTION_NO_DEFAULT_EXCLUDES},
262 {"enable-auto-import", no_argument, NULL, OPTION_DLL_ENABLE_AUTO_IMPORT},
263 {"disable-auto-import", no_argument, NULL, OPTION_DLL_DISABLE_AUTO_IMPORT},
264 {"enable-extra-pe-debug", no_argument, NULL, OPTION_ENABLE_EXTRA_PE_DEBUG},
265 #endif
266 {NULL, no_argument, NULL, 0}
267 };
268
269
270 /* PE/WIN32; added routines to get the subsystem type, heap and/or stack
271 parameters which may be input from the command line */
272
273 typedef struct
274 {
275 void *ptr;
276 int size;
277 int value;
278 char *symbol;
279 int inited;
280 } definfo;
281
282 #define D(field,symbol,def) {&pe.field,sizeof(pe.field), def, symbol,0}
283
284 static definfo init[] =
285 {
286 /* imagebase must be first */
287 #define IMAGEBASEOFF 0
288 D(ImageBase,"__image_base__", NT_EXE_IMAGE_BASE),
289 #define DLLOFF 1
290 {&dll, sizeof(dll), 0, "__dll__", 0},
291 D(SectionAlignment,"__section_alignment__", PE_DEF_SECTION_ALIGNMENT),
292 D(FileAlignment,"__file_alignment__", PE_DEF_FILE_ALIGNMENT),
293 D(MajorOperatingSystemVersion,"__major_os_version__", 4),
294 D(MinorOperatingSystemVersion,"__minor_os_version__", 0),
295 D(MajorImageVersion,"__major_image_version__", 1),
296 D(MinorImageVersion,"__minor_image_version__", 0),
297 #ifdef TARGET_IS_armpe
298 D(MajorSubsystemVersion,"__major_subsystem_version__", 2),
299 #else
300 D(MajorSubsystemVersion,"__major_subsystem_version__", 4),
301 #endif
302 D(MinorSubsystemVersion,"__minor_subsystem_version__", 0),
303 D(Subsystem,"__subsystem__", ${SUBSYSTEM}),
304 D(SizeOfStackReserve,"__size_of_stack_reserve__", 0x200000),
305 D(SizeOfStackCommit,"__size_of_stack_commit__", 0x1000),
306 D(SizeOfHeapReserve,"__size_of_heap_reserve__", 0x100000),
307 D(SizeOfHeapCommit,"__size_of_heap_commit__", 0x1000),
308 D(LoaderFlags,"__loader_flags__", 0x0),
309 { NULL, 0, 0, NULL, 0 }
310 };
311
312 static void
313 gld_${EMULATION_NAME}_list_options (file)
314 FILE * file;
315 {
316 fprintf (file, _(" --base_file <basefile> Generate a base file for relocatable DLLs\n"));
317 fprintf (file, _(" --dll Set image base to the default for DLLs\n"));
318 fprintf (file, _(" --file-alignment <size> Set file alignment\n"));
319 fprintf (file, _(" --heap <size> Set initial size of the heap\n"));
320 fprintf (file, _(" --image-base <address> Set start address of the executable\n"));
321 fprintf (file, _(" --major-image-version <number> Set version number of the executable\n"));
322 fprintf (file, _(" --major-os-version <number> Set minimum required OS version\n"));
323 fprintf (file, _(" --major-subsystem-version <number> Set minimum required OS subsystem version\n"));
324 fprintf (file, _(" --minor-image-version <number> Set revision number of the executable\n"));
325 fprintf (file, _(" --minor-os-version <number> Set minimum required OS revision\n"));
326 fprintf (file, _(" --minor-subsystem-version <number> Set minimum required OS subsystem revision\n"));
327 fprintf (file, _(" --section-alignment <size> Set section alignment\n"));
328 fprintf (file, _(" --stack <size> Set size of the initial stack\n"));
329 fprintf (file, _(" --subsystem <name>[:<version>] Set required OS subsystem [& version]\n"));
330 fprintf (file, _(" --support-old-code Support interworking with old code\n"));
331 fprintf (file, _(" --thumb-entry=<symbol> Set the entry point to be Thumb <symbol>\n"));
332 #ifdef DLL_SUPPORT
333 fprintf (file, _(" --add-stdcall-alias Export symbols with and without @nn\n"));
334 fprintf (file, _(" --disable-stdcall-fixup Don't link _sym to _sym@nn\n"));
335 fprintf (file, _(" --enable-stdcall-fixup Link _sym to _sym@nn without warnings\n"));
336 fprintf (file, _(" --exclude-symbols sym,sym,... Exclude symbols from automatic export\n"));
337 fprintf (file, _(" --export-all-symbols Automatically export all globals to DLL\n"));
338 fprintf (file, _(" --kill-at Remove @nn from exported symbols\n"));
339 fprintf (file, _(" --out-implib <file> Generate import library\n"));
340 fprintf (file, _(" --output-def <file> Generate a .DEF file for the built DLL\n"));
341 fprintf (file, _(" --warn-duplicate-exports Warn about duplicate exports.\n"));
342 fprintf (file, _(" --compat-implib Create backward compatible import libs;\n"));
343 fprintf (file, _(" create __imp_<SYMBOL> as well.\n"));
344 fprintf (file, _(" --enable-auto-image-base Automatically choose image base for DLLs\n"));
345 fprintf (file, _(" unless user specifies one\n"));
346 fprintf (file, _(" --disable-auto-image-base Do not auto-choose image base. (default)\n"));
347 fprintf (file, _(" --dll-search-prefix=<string> When linking dynamically to a dll witout an\n"));
348 fprintf (file, _(" importlib, use <string><basename>.dll \n"));
349 fprintf (file, _(" in preference to lib<basename>.dll \n"));
350 fprintf (file, _(" --enable-auto-import Do sophistcated linking of _sym to \n"));
351 fprintf (file, _(" __imp_sym for DATA references\n"));
352 fprintf (file, _(" --disable-auto-import Do not auto-import DATA items from DLLs\n"));
353 fprintf (file, _(" --enable-extra-pe-debug Enable verbose debug output when building\n"));
354 fprintf (file, _(" or linking to DLLs (esp. auto-import)\n"));
355 #endif
356 }
357
358 static void
359 set_pe_name (name, val)
360 char *name;
361 long val;
362 {
363 int i;
364 /* Find the name and set it. */
365 for (i = 0; init[i].ptr; i++)
366 {
367 if (strcmp (name, init[i].symbol) == 0)
368 {
369 init[i].value = val;
370 init[i].inited = 1;
371 return;
372 }
373 }
374 abort();
375 }
376
377
378 static void
379 set_pe_subsystem ()
380 {
381 const char *sver;
382 int len;
383 int i;
384 static const struct
385 {
386 const char *name;
387 const int value;
388 const char *entry;
389 }
390 v[] =
391 {
392 { "native", 1, "NtProcessStartup" },
393 #if defined TARGET_IS_mipspe || defined TARGET_IS_armpe
394 { "windows", 2, "WinMainCRTStartup" },
395 #else
396 { "windows", 2, "WinMainCRTStartup" },
397 #endif
398 { "console", 3, "mainCRTStartup" },
399 #if 0
400 /* The Microsoft linker does not recognize this. */
401 { "os2", 5, "" },
402 #endif
403 { "posix", 7, "__PosixProcessStartup"},
404 { "wince", 9, "_WinMainCRTStartup" },
405 { 0, 0, 0 }
406 };
407
408 sver = strchr (optarg, ':');
409 if (sver == NULL)
410 len = strlen (optarg);
411 else
412 {
413 char *end;
414
415 len = sver - optarg;
416 set_pe_name ("__major_subsystem_version__",
417 strtoul (sver + 1, &end, 0));
418 if (*end == '.')
419 set_pe_name ("__minor_subsystem_version__",
420 strtoul (end + 1, &end, 0));
421 if (*end != '\0')
422 einfo (_("%P: warning: bad version number in -subsystem option\n"));
423 }
424
425 for (i = 0; v[i].name; i++)
426 {
427 if (strncmp (optarg, v[i].name, len) == 0
428 && v[i].name[len] == '\0')
429 {
430 const char *initial_symbol_char;
431 const char *entry;
432
433 set_pe_name ("__subsystem__", v[i].value);
434
435 initial_symbol_char = ${INITIAL_SYMBOL_CHAR};
436 if (*initial_symbol_char == '\0')
437 entry = v[i].entry;
438 else
439 {
440 char *alc_entry;
441
442 /* lang_add_entry expects its argument to be permanently
443 allocated, so we don't free this string. */
444 alc_entry = xmalloc (strlen (initial_symbol_char)
445 + strlen (v[i].entry)
446 + 1);
447 strcpy (alc_entry, initial_symbol_char);
448 strcat (alc_entry, v[i].entry);
449 entry = alc_entry;
450 }
451
452 lang_add_entry (entry, 1);
453
454 return;
455 }
456 }
457
458 einfo (_("%P%F: invalid subsystem type %s\n"), optarg);
459 }
460
461
462
463 static void
464 set_pe_value (name)
465 char *name;
466
467 {
468 char *end;
469
470 set_pe_name (name, strtoul (optarg, &end, 0));
471
472 if (end == optarg)
473 einfo (_("%P%F: invalid hex number for PE parameter '%s'\n"), optarg);
474
475 optarg = end;
476 }
477
478 static void
479 set_pe_stack_heap (resname, comname)
480 char *resname;
481 char *comname;
482 {
483 set_pe_value (resname);
484
485 if (*optarg == ',')
486 {
487 optarg++;
488 set_pe_value (comname);
489 }
490 else if (*optarg)
491 einfo (_("%P%F: strange hex info for PE parameter '%s'\n"), optarg);
492 }
493
494
495
496 static int
497 gld_${EMULATION_NAME}_parse_args(argc, argv)
498 int argc;
499 char **argv;
500 {
501 int longind;
502 int optc;
503 int prevoptind = optind;
504 int prevopterr = opterr;
505 int wanterror;
506 static int lastoptind = -1;
507
508 if (lastoptind != optind)
509 opterr = 0;
510 wanterror = opterr;
511
512 lastoptind = optind;
513
514 optc = getopt_long_only (argc, argv, "-", longopts, &longind);
515 opterr = prevopterr;
516
517 switch (optc)
518 {
519 default:
520 if (wanterror)
521 xexit (1);
522 optind = prevoptind;
523 return 0;
524
525 case OPTION_BASE_FILE:
526 link_info.base_file = (PTR) fopen (optarg, FOPEN_WB);
527 if (link_info.base_file == NULL)
528 {
529 /* xgettext:c-format */
530 fprintf (stderr, _("%s: Can't open base file %s\n"),
531 program_name, optarg);
532 xexit (1);
533 }
534 break;
535
536 /* PE options */
537 case OPTION_HEAP:
538 set_pe_stack_heap ("__size_of_heap_reserve__", "__size_of_heap_commit__");
539 break;
540 case OPTION_STACK:
541 set_pe_stack_heap ("__size_of_stack_reserve__", "__size_of_stack_commit__");
542 break;
543 case OPTION_SUBSYSTEM:
544 set_pe_subsystem ();
545 break;
546 case OPTION_MAJOR_OS_VERSION:
547 set_pe_value ("__major_os_version__");
548 break;
549 case OPTION_MINOR_OS_VERSION:
550 set_pe_value ("__minor_os_version__");
551 break;
552 case OPTION_MAJOR_SUBSYSTEM_VERSION:
553 set_pe_value ("__major_subsystem_version__");
554 break;
555 case OPTION_MINOR_SUBSYSTEM_VERSION:
556 set_pe_value ("__minor_subsystem_version__");
557 break;
558 case OPTION_MAJOR_IMAGE_VERSION:
559 set_pe_value ("__major_image_version__");
560 break;
561 case OPTION_MINOR_IMAGE_VERSION:
562 set_pe_value ("__minor_image_version__");
563 break;
564 case OPTION_FILE_ALIGNMENT:
565 set_pe_value ("__file_alignment__");
566 break;
567 case OPTION_SECTION_ALIGNMENT:
568 set_pe_value ("__section_alignment__");
569 break;
570 case OPTION_DLL:
571 set_pe_name ("__dll__", 1);
572 break;
573 case OPTION_IMAGE_BASE:
574 set_pe_value ("__image_base__");
575 break;
576 case OPTION_SUPPORT_OLD_CODE:
577 support_old_code = 1;
578 break;
579 case OPTION_THUMB_ENTRY:
580 thumb_entry_symbol = optarg;
581 break;
582 #ifdef DLL_SUPPORT
583 case OPTION_OUT_DEF:
584 pe_out_def_filename = xstrdup (optarg);
585 break;
586 case OPTION_EXPORT_ALL:
587 pe_dll_export_everything = 1;
588 break;
589 case OPTION_EXCLUDE_SYMBOLS:
590 pe_dll_add_excludes (optarg);
591 break;
592 case OPTION_KILL_ATS:
593 pe_dll_kill_ats = 1;
594 break;
595 case OPTION_STDCALL_ALIASES:
596 pe_dll_stdcall_aliases = 1;
597 break;
598 case OPTION_ENABLE_STDCALL_FIXUP:
599 pe_enable_stdcall_fixup = 1;
600 break;
601 case OPTION_DISABLE_STDCALL_FIXUP:
602 pe_enable_stdcall_fixup = 0;
603 break;
604 case OPTION_IMPLIB_FILENAME:
605 pe_implib_filename = xstrdup (optarg);
606 break;
607 case OPTION_WARN_DUPLICATE_EXPORTS:
608 pe_dll_warn_dup_exports = 1;
609 break;
610 case OPTION_IMP_COMPAT:
611 pe_dll_compat_implib = 1;
612 break;
613 case OPTION_ENABLE_AUTO_IMAGE_BASE:
614 pe_enable_auto_image_base = 1;
615 break;
616 case OPTION_DISABLE_AUTO_IMAGE_BASE:
617 pe_enable_auto_image_base = 0;
618 break;
619 case OPTION_DLL_SEARCH_PREFIX:
620 pe_dll_search_prefix = xstrdup( optarg );
621 break;
622 case OPTION_NO_DEFAULT_EXCLUDES:
623 pe_dll_do_default_excludes = 0;
624 break;
625 case OPTION_DLL_ENABLE_AUTO_IMPORT:
626 link_info.pei386_auto_import = true;
627 break;
628 case OPTION_DLL_DISABLE_AUTO_IMPORT:
629 link_info.pei386_auto_import = false;
630 break;
631 case OPTION_ENABLE_EXTRA_PE_DEBUG:
632 pe_dll_extra_pe_debug = 1;
633 break;
634 #endif
635 }
636 return 1;
637 }
638 \f
639
640 #ifdef DLL_SUPPORT
641 static unsigned long
642 strhash (const char *str)
643 {
644 const unsigned char *s;
645 unsigned long hash;
646 unsigned int c;
647 unsigned int len;
648
649 hash = 0;
650 len = 0;
651 s = (const unsigned char *) str;
652 while ((c = *s++) != '\0')
653 {
654 hash += c + (c << 17);
655 hash ^= hash >> 2;
656 ++len;
657 }
658 hash += len + (len << 17);
659 hash ^= hash >> 2;
660
661 return hash;
662 }
663
664 /* Use the output file to create a image base for relocatable DLLs. */
665 static unsigned long
666 compute_dll_image_base (const char *ofile)
667 {
668 unsigned long hash = strhash (ofile);
669 return 0x60000000 | ((hash << 16) & 0x0FFC0000);
670 }
671 #endif
672
673 /* Assign values to the special symbols before the linker script is
674 read. */
675
676 static void
677 gld_${EMULATION_NAME}_set_symbols ()
678 {
679 /* Run through and invent symbols for all the
680 names and insert the defaults. */
681 int j;
682 lang_statement_list_type *save;
683
684 if (!init[IMAGEBASEOFF].inited)
685 {
686 if (link_info.relocateable)
687 init[IMAGEBASEOFF].value = 0;
688 else if (init[DLLOFF].value || link_info.shared)
689 #ifdef DLL_SUPPORT
690 init[IMAGEBASEOFF].value = (pe_enable_auto_image_base) ?
691 compute_dll_image_base (output_filename) : NT_DLL_IMAGE_BASE;
692 #else
693 init[IMAGEBASEOFF].value = NT_DLL_IMAGE_BASE;
694 #endif
695 else
696 init[IMAGEBASEOFF].value = NT_EXE_IMAGE_BASE;
697 }
698
699 /* Don't do any symbol assignments if this is a relocateable link. */
700 if (link_info.relocateable)
701 return;
702
703 /* Glue the assignments into the abs section */
704 save = stat_ptr;
705
706 stat_ptr = &(abs_output_section->children);
707
708 for (j = 0; init[j].ptr; j++)
709 {
710 long val = init[j].value;
711 lang_assignment_statement_type *rv;
712 rv = lang_add_assignment (exp_assop ('=' ,init[j].symbol, exp_intop (val)));
713 if (init[j].size == sizeof(short))
714 *(short *)init[j].ptr = val;
715 else if (init[j].size == sizeof(int))
716 *(int *)init[j].ptr = val;
717 else if (init[j].size == sizeof(long))
718 *(long *)init[j].ptr = val;
719 /* This might be a long long or other special type. */
720 else if (init[j].size == sizeof(bfd_vma))
721 *(bfd_vma *)init[j].ptr = val;
722 else abort();
723 if (j == IMAGEBASEOFF)
724 image_base_statement = rv;
725 }
726 /* Restore the pointer. */
727 stat_ptr = save;
728
729 if (pe.FileAlignment >
730 pe.SectionAlignment)
731 {
732 einfo (_("%P: warning, file alignment > section alignment.\n"));
733 }
734 }
735
736 /* This is called after the linker script and the command line options
737 have been read. */
738
739 static void
740 gld_${EMULATION_NAME}_after_parse ()
741 {
742 /* The Windows libraries are designed for the linker to treat the
743 entry point as an undefined symbol. Otherwise, the .obj that
744 defines mainCRTStartup is brought in because it is the first
745 encountered in libc.lib and it has other symbols in it which will
746 be pulled in by the link process. To avoid this, we act as
747 though the user specified -u with the entry point symbol.
748
749 This function is called after the linker script and command line
750 options have been read, so at this point we know the right entry
751 point. This function is called before the input files are
752 opened, so registering the symbol as undefined will make a
753 difference. */
754
755 if (! link_info.relocateable && entry_symbol != NULL)
756 ldlang_add_undef (entry_symbol);
757 }
758
759 /* Previously, pe-dll.c directly accessed pe_data_import_dll,
760 which was only defined if DLL_SUPPORT. This cause a build
761 failure on certain targets. At least this function will
762 exist regardless of whether DLL_SUPPORT is defined or not.
763
764 However, it's still a kludge. pe-dll.c shouldn't directly
765 call any functions other than the gld_${EMULATION_NAME}_*. */
766
767 char *
768 pe_get_data_import_dll_name ()
769 {
770 #ifdef DLL_SUPPORT
771 return pe_data_import_dll;
772 #else
773 return "unknown";
774 #endif
775 }
776
777 #ifdef DLL_SUPPORT
778 static struct bfd_link_hash_entry *pe_undef_found_sym;
779
780 static boolean
781 pe_undef_cdecl_match (h, string)
782 struct bfd_link_hash_entry *h;
783 PTR string;
784 {
785 int sl;
786 sl = strlen (string); /* silence compiler warning */
787 if (h->type == bfd_link_hash_defined
788 && strncmp (h->root.string, string, sl) == 0
789 && h->root.string[sl] == '@')
790 {
791 pe_undef_found_sym = h;
792 return false;
793 }
794 return true;
795 }
796
797 static void
798 pe_fixup_stdcalls ()
799 {
800 static int gave_warning_message = 0;
801 struct bfd_link_hash_entry *undef, *sym;
802 char *at;
803 if (pe_dll_extra_pe_debug)
804 {
805 printf ("%s\n", __FUNCTION__);
806 }
807
808 for (undef = link_info.hash->undefs; undef; undef=undef->next)
809 if (undef->type == bfd_link_hash_undefined)
810 {
811 at = strchr (undef->root.string, '@');
812 if (at)
813 {
814 /* The symbol is a stdcall symbol, so let's look for a cdecl
815 symbol with the same name and resolve to that */
816 char *cname = xstrdup (undef->root.string);
817 at = strchr (cname, '@');
818 *at = 0;
819 sym = bfd_link_hash_lookup (link_info.hash, cname, 0, 0, 1);
820 if (sym && sym->type == bfd_link_hash_defined)
821 {
822 undef->type = bfd_link_hash_defined;
823 undef->u.def.value = sym->u.def.value;
824 undef->u.def.section = sym->u.def.section;
825 if (pe_enable_stdcall_fixup == -1)
826 {
827 einfo (_("Warning: resolving %s by linking to %s\n"),
828 undef->root.string, cname);
829 if (! gave_warning_message)
830 {
831 gave_warning_message = 1;
832 einfo(_("Use --enable-stdcall-fixup to disable these warnings\n"));
833 einfo(_("Use --disable-stdcall-fixup to disable these fixups\n"));
834 }
835 }
836 }
837 }
838 else
839 {
840 /* The symbol is a cdecl symbol, so we look for stdcall
841 symbols - which means scanning the whole symbol table */
842 pe_undef_found_sym = 0;
843 bfd_link_hash_traverse (link_info.hash, pe_undef_cdecl_match,
844 (PTR) undef->root.string);
845 sym = pe_undef_found_sym;
846 if (sym)
847 {
848 undef->type = bfd_link_hash_defined;
849 undef->u.def.value = sym->u.def.value;
850 undef->u.def.section = sym->u.def.section;
851 if (pe_enable_stdcall_fixup == -1)
852 {
853 einfo (_("Warning: resolving %s by linking to %s\n"),
854 undef->root.string, sym->root.string);
855 if (! gave_warning_message)
856 {
857 gave_warning_message = 1;
858 einfo(_("Use --enable-stdcall-fixup to disable these warnings\n"));
859 einfo(_("Use --disable-stdcall-fixup to disable these fixups\n"));
860 }
861 }
862 }
863 }
864 }
865 }
866
867 static int
868 make_import_fixup (rel, s)
869 arelent *rel;
870 asection *s;
871 {
872 struct symbol_cache_entry *sym = *rel->sym_ptr_ptr;
873
874 if (pe_dll_extra_pe_debug)
875 {
876 printf ("arelent: %s@%#lx: add=%li\n", sym->name,
877 (long) rel->address, (long) rel->addend);
878 }
879
880 {
881 int addend = 0;
882 if (!bfd_get_section_contents(s->owner, s, &addend, rel->address, sizeof(addend)))
883 {
884 einfo (_("%C: Cannot get section contents - auto-import exception\n"),
885 s->owner, s, rel->address);
886 }
887
888 if (addend == 0)
889 pe_create_import_fixup (rel);
890 else
891 {
892 einfo (_("%C: variable '%T' can't be auto-imported. Please read the documentation for ld's --enable-auto-import for details.\n"),
893 s->owner, s, rel->address, sym->name);
894 einfo ("%X");
895 }
896 }
897
898 return 1;
899 }
900
901 static void
902 pe_find_data_imports ()
903 {
904 struct bfd_link_hash_entry *undef, *sym;
905 for (undef = link_info.hash->undefs; undef; undef=undef->next)
906 {
907 if (undef->type == bfd_link_hash_undefined)
908 {
909 /* C++ symbols are *long* */
910 char buf[4096];
911 if (pe_dll_extra_pe_debug)
912 {
913 printf ("%s:%s\n", __FUNCTION__, undef->root.string);
914 }
915 sprintf (buf, "__imp_%s", undef->root.string);
916
917 sym = bfd_link_hash_lookup (link_info.hash, buf, 0, 0, 1);
918 if (sym && sym->type == bfd_link_hash_defined)
919 {
920 einfo (_("Warning: resolving %s by linking to %s (auto-import)\n"),
921 undef->root.string, buf);
922 {
923 bfd *b = sym->u.def.section->owner;
924 asymbol **symbols;
925 int nsyms, symsize, i;
926
927 symsize = bfd_get_symtab_upper_bound (b);
928 symbols = (asymbol **) xmalloc (symsize);
929 nsyms = bfd_canonicalize_symtab (b, symbols);
930
931 for (i = 0; i < nsyms; i++)
932 {
933 if (memcmp(symbols[i]->name, "__head_",
934 sizeof ("__head_") - 1))
935 continue;
936 if (pe_dll_extra_pe_debug)
937 {
938 printf ("->%s\n", symbols[i]->name);
939 }
940 pe_data_import_dll = (char*) (symbols[i]->name +
941 sizeof ("__head_") - 1);
942 break;
943 }
944 }
945
946 pe_walk_relocs_of_symbol (&link_info, undef->root.string,
947 make_import_fixup);
948
949 /* let's differentiate it somehow from defined */
950 undef->type = bfd_link_hash_defweak;
951 /* we replace original name with __imp_ prefixed, this
952 1) may trash memory 2) leads to duplicate symbol generation.
953 Still, IMHO it's better than having name poluted. */
954 undef->root.string = sym->root.string;
955 undef->u.def.value = sym->u.def.value;
956 undef->u.def.section = sym->u.def.section;
957 }
958 }
959 }
960 }
961 #endif /* DLL_SUPPORT */
962
963 static boolean
964 pr_sym (h, string)
965 struct bfd_hash_entry *h;
966 PTR string ATTRIBUTE_UNUSED;
967 {
968 if (pe_dll_extra_pe_debug)
969 {
970 printf("+%s\n",h->string);
971 }
972 return true;
973 }
974
975
976 static void
977 gld_${EMULATION_NAME}_after_open ()
978 {
979
980 if (pe_dll_extra_pe_debug)
981 {
982 bfd *a;
983 struct bfd_link_hash_entry *sym;
984 printf ("%s()\n", __FUNCTION__);
985
986 for (sym = link_info.hash->undefs; sym; sym=sym->next)
987 printf ("-%s\n", sym->root.string);
988 bfd_hash_traverse (&link_info.hash->table, pr_sym,NULL);
989
990 for (a = link_info.input_bfds; a; a = a->link_next)
991 {
992 printf("*%s\n",a->filename);
993 }
994 }
995
996 /* Pass the wacky PE command line options into the output bfd.
997 FIXME: This should be done via a function, rather than by
998 including an internal BFD header. */
999
1000 if (coff_data (output_bfd) == NULL || coff_data (output_bfd)->pe == 0)
1001 einfo (_("%F%P: PE operations on non PE file.\n"));
1002
1003 pe_data (output_bfd)->pe_opthdr = pe;
1004 pe_data (output_bfd)->dll = init[DLLOFF].value;
1005
1006 #ifdef DLL_SUPPORT
1007 if (pe_enable_stdcall_fixup) /* -1=warn or 1=disable */
1008 pe_fixup_stdcalls ();
1009
1010 pe_find_data_imports ();
1011
1012 pe_process_import_defs(output_bfd, &link_info);
1013 if (link_info.shared)
1014 pe_dll_build_sections (output_bfd, &link_info);
1015
1016 #ifndef TARGET_IS_i386pe
1017 #ifndef TARGET_IS_armpe
1018 else
1019 pe_exe_build_sections (output_bfd, &link_info);
1020 #endif
1021 #endif
1022 #endif
1023
1024 #if defined(TARGET_IS_armpe) || defined(TARGET_IS_arm_epoc_pe)
1025 if (strstr (bfd_get_target (output_bfd), "arm") == NULL)
1026 {
1027 /* The arm backend needs special fields in the output hash structure.
1028 These will only be created if the output format is an arm format,
1029 hence we do not support linking and changing output formats at the
1030 same time. Use a link followed by objcopy to change output formats. */
1031 einfo ("%F%X%P: error: cannot change output format whilst linking ARM binaries\n");
1032 return;
1033 }
1034 {
1035 /* Find a BFD that can hold the interworking stubs. */
1036 LANG_FOR_EACH_INPUT_STATEMENT (is)
1037 {
1038 if (bfd_arm_pe_get_bfd_for_interworking (is->the_bfd, & link_info))
1039 break;
1040 }
1041 }
1042 #endif
1043
1044 {
1045 /* This next chunk of code tries to detect the case where you have
1046 two import libraries for the same DLL (specifically,
1047 symbolically linking libm.a and libc.a in cygwin to
1048 libcygwin.a). In those cases, it's possible for function
1049 thunks from the second implib to be used but without the
1050 head/tail objects, causing an improper import table. We detect
1051 those cases and rename the "other" import libraries to match
1052 the one the head/tail come from, so that the linker will sort
1053 things nicely and produce a valid import table. */
1054
1055 LANG_FOR_EACH_INPUT_STATEMENT (is)
1056 {
1057 if (is->the_bfd->my_archive)
1058 {
1059 int idata2 = 0, reloc_count=0, is_imp = 0;
1060 asection *sec;
1061
1062 /* See if this is an import library thunk. */
1063 for (sec = is->the_bfd->sections; sec; sec = sec->next)
1064 {
1065 if (strcmp (sec->name, ".idata\$2") == 0)
1066 idata2 = 1;
1067 if (strncmp (sec->name, ".idata\$", 7) == 0)
1068 is_imp = 1;
1069 reloc_count += sec->reloc_count;
1070 }
1071
1072 if (is_imp && !idata2 && reloc_count)
1073 {
1074 /* It is, look for the reference to head and see if it's
1075 from our own library. */
1076 for (sec = is->the_bfd->sections; sec; sec = sec->next)
1077 {
1078 int i;
1079 long symsize;
1080 long relsize;
1081 asymbol **symbols;
1082 arelent **relocs;
1083 int nrelocs;
1084
1085 symsize = bfd_get_symtab_upper_bound (is->the_bfd);
1086 if (symsize < 1)
1087 break;
1088 relsize = bfd_get_reloc_upper_bound (is->the_bfd, sec);
1089 if (relsize < 1)
1090 break;
1091
1092 symbols = (asymbol **) xmalloc (symsize);
1093 symsize = bfd_canonicalize_symtab (is->the_bfd, symbols);
1094 if (symsize < 0)
1095 {
1096 einfo ("%X%P: unable to process symbols: %E");
1097 return;
1098 }
1099
1100 relocs = (arelent **) xmalloc ((size_t) relsize);
1101 nrelocs = bfd_canonicalize_reloc (is->the_bfd, sec,
1102 relocs, symbols);
1103 if (nrelocs < 0)
1104 {
1105 free (relocs);
1106 einfo ("%X%P: unable to process relocs: %E");
1107 return;
1108 }
1109
1110 for (i = 0; i < nrelocs; i++)
1111 {
1112 struct symbol_cache_entry *s;
1113 struct bfd_link_hash_entry * blhe;
1114 bfd *other_bfd;
1115 char *n;
1116
1117 s = (relocs[i]->sym_ptr_ptr)[0];
1118
1119 if (s->flags & BSF_LOCAL)
1120 continue;
1121
1122 /* Thunk section with reloc to another bfd. */
1123 blhe = bfd_link_hash_lookup (link_info.hash,
1124 s->name,
1125 false, false, true);
1126
1127 if (blhe == NULL
1128 || blhe->type != bfd_link_hash_defined)
1129 continue;
1130
1131 other_bfd = blhe->u.def.section->owner;
1132
1133 if (strcmp (is->the_bfd->my_archive->filename,
1134 other_bfd->my_archive->filename) == 0)
1135 continue;
1136
1137 /* Rename this implib to match the other. */
1138 n = (char *) xmalloc (strlen (other_bfd->my_archive->filename) + 1);
1139
1140 strcpy (n, other_bfd->my_archive->filename);
1141
1142 is->the_bfd->my_archive->filename = n;
1143 }
1144
1145 free (relocs);
1146 /* Note - we do not free the symbols,
1147 they are now cached in the BFD. */
1148 }
1149 }
1150 }
1151 }
1152 }
1153
1154 {
1155 int is_ms_arch = 0;
1156 bfd *cur_arch = 0;
1157 lang_input_statement_type *is2;
1158
1159 /* Careful - this is a shell script. Watch those dollar signs! */
1160 /* Microsoft import libraries have every member named the same,
1161 and not in the right order for us to link them correctly. We
1162 must detect these and rename the members so that they'll link
1163 correctly. There are three types of objects: the head, the
1164 thunks, and the sentinel(s). The head is easy; it's the one
1165 with idata2. We assume that the sentinels won't have relocs,
1166 and the thunks will. It's easier than checking the symbol
1167 table for external references. */
1168 LANG_FOR_EACH_INPUT_STATEMENT (is)
1169 {
1170 if (is->the_bfd->my_archive)
1171 {
1172 bfd *arch = is->the_bfd->my_archive;
1173 if (cur_arch != arch)
1174 {
1175 cur_arch = arch;
1176 is_ms_arch = 1;
1177 for (is2 = is;
1178 is2 && is2->the_bfd->my_archive == arch;
1179 is2 = (lang_input_statement_type *)is2->next)
1180 {
1181 if (strcmp (is->the_bfd->filename, is2->the_bfd->filename))
1182 is_ms_arch = 0;
1183 }
1184 }
1185
1186 if (is_ms_arch)
1187 {
1188 int idata2 = 0, reloc_count=0;
1189 asection *sec;
1190 char *new_name, seq;
1191
1192 for (sec = is->the_bfd->sections; sec; sec = sec->next)
1193 {
1194 if (strcmp (sec->name, ".idata\$2") == 0)
1195 idata2 = 1;
1196 reloc_count += sec->reloc_count;
1197 }
1198
1199 if (idata2) /* .idata2 is the TOC */
1200 seq = 'a';
1201 else if (reloc_count > 0) /* thunks */
1202 seq = 'b';
1203 else /* sentinel */
1204 seq = 'c';
1205
1206 new_name = xmalloc (strlen (is->the_bfd->filename) + 3);
1207 sprintf (new_name, "%s.%c", is->the_bfd->filename, seq);
1208 is->the_bfd->filename = new_name;
1209
1210 new_name = xmalloc (strlen (is->filename) + 3);
1211 sprintf (new_name, "%s.%c", is->filename, seq);
1212 is->filename = new_name;
1213 }
1214 }
1215 }
1216 }
1217 }
1218 \f
1219 static void
1220 gld_${EMULATION_NAME}_before_allocation()
1221 {
1222 #ifdef TARGET_IS_ppcpe
1223 /* Here we rummage through the found bfds to collect toc information */
1224 {
1225 LANG_FOR_EACH_INPUT_STATEMENT (is)
1226 {
1227 if (!ppc_process_before_allocation (is->the_bfd, &link_info))
1228 {
1229 /* xgettext:c-format */
1230 einfo (_("Errors encountered processing file %s\n"), is->filename);
1231 }
1232 }
1233 }
1234
1235 /* We have seen it all. Allocate it, and carry on */
1236 ppc_allocate_toc_section (&link_info);
1237 #endif /* TARGET_IS_ppcpe */
1238
1239 #if defined(TARGET_IS_armpe) || defined(TARGET_IS_arm_epoc_pe)
1240 /* FIXME: we should be able to set the size of the interworking stub
1241 section.
1242
1243 Here we rummage through the found bfds to collect glue
1244 information. FIXME: should this be based on a command line
1245 option? krk@cygnus.com */
1246 {
1247 LANG_FOR_EACH_INPUT_STATEMENT (is)
1248 {
1249 if (! bfd_arm_pe_process_before_allocation
1250 (is->the_bfd, & link_info, support_old_code))
1251 {
1252 /* xgettext:c-format */
1253 einfo (_("Errors encountered processing file %s for interworking"),
1254 is->filename);
1255 }
1256 }
1257 }
1258
1259 /* We have seen it all. Allocate it, and carry on */
1260 bfd_arm_pe_allocate_interworking_sections (& link_info);
1261 #endif /* TARGET_IS_armpe */
1262 }
1263 \f
1264 #ifdef DLL_SUPPORT
1265 /* This is called when an input file isn't recognized as a BFD. We
1266 check here for .DEF files and pull them in automatically. */
1267
1268 static int
1269 saw_option(char *option)
1270 {
1271 int i;
1272 for (i=0; init[i].ptr; i++)
1273 if (strcmp (init[i].symbol, option) == 0)
1274 return init[i].inited;
1275 return 0;
1276 }
1277 #endif /* DLL_SUPPORT */
1278
1279 static boolean
1280 gld_${EMULATION_NAME}_unrecognized_file(entry)
1281 lang_input_statement_type *entry ATTRIBUTE_UNUSED;
1282 {
1283 #ifdef DLL_SUPPORT
1284 const char *ext = entry->filename + strlen (entry->filename) - 4;
1285
1286 if (strcmp (ext, ".def") == 0 || strcmp (ext, ".DEF") == 0)
1287 {
1288 if (pe_def_file == 0)
1289 pe_def_file = def_file_empty ();
1290 def_file_parse (entry->filename, pe_def_file);
1291 if (pe_def_file)
1292 {
1293 int i, buflen=0, len;
1294 char *buf;
1295 for (i=0; i<pe_def_file->num_exports; i++)
1296 {
1297 len = strlen(pe_def_file->exports[i].internal_name);
1298 if (buflen < len+2)
1299 buflen = len+2;
1300 }
1301 buf = (char *) xmalloc (buflen);
1302 for (i=0; i<pe_def_file->num_exports; i++)
1303 {
1304 struct bfd_link_hash_entry *h;
1305 sprintf(buf, "_%s", pe_def_file->exports[i].internal_name);
1306
1307 h = bfd_link_hash_lookup (link_info.hash, buf, true, true, true);
1308 if (h == (struct bfd_link_hash_entry *) NULL)
1309 einfo (_("%P%F: bfd_link_hash_lookup failed: %E\n"));
1310 if (h->type == bfd_link_hash_new)
1311 {
1312 h->type = bfd_link_hash_undefined;
1313 h->u.undef.abfd = NULL;
1314 bfd_link_add_undef (link_info.hash, h);
1315 }
1316 }
1317 free (buf);
1318
1319 /* def_file_print (stdout, pe_def_file); */
1320 if (pe_def_file->is_dll == 1)
1321 link_info.shared = 1;
1322
1323 if (pe_def_file->base_address != (bfd_vma)(-1))
1324 {
1325 pe.ImageBase =
1326 pe_data (output_bfd)->pe_opthdr.ImageBase =
1327 init[IMAGEBASEOFF].value = pe_def_file->base_address;
1328 init[IMAGEBASEOFF].inited = 1;
1329 if (image_base_statement)
1330 image_base_statement->exp =
1331 exp_assop ('=', "__image_base__", exp_intop (pe.ImageBase));
1332 }
1333
1334 #if 0
1335 /* Not sure if these *should* be set */
1336 if (pe_def_file->version_major != -1)
1337 {
1338 pe.MajorImageVersion = pe_def_file->version_major;
1339 pe.MinorImageVersion = pe_def_file->version_minor;
1340 }
1341 #endif
1342 if (pe_def_file->stack_reserve != -1
1343 && ! saw_option ("__size_of_stack_reserve__"))
1344 {
1345 pe.SizeOfStackReserve = pe_def_file->stack_reserve;
1346 if (pe_def_file->stack_commit != -1)
1347 pe.SizeOfStackCommit = pe_def_file->stack_commit;
1348 }
1349 if (pe_def_file->heap_reserve != -1
1350 && ! saw_option ("__size_of_heap_reserve__"))
1351 {
1352 pe.SizeOfHeapReserve = pe_def_file->heap_reserve;
1353 if (pe_def_file->heap_commit != -1)
1354 pe.SizeOfHeapCommit = pe_def_file->heap_commit;
1355 }
1356 return true;
1357 }
1358 }
1359 #endif
1360 return false;
1361
1362 }
1363
1364 static boolean
1365 gld_${EMULATION_NAME}_recognized_file(entry)
1366 lang_input_statement_type *entry ATTRIBUTE_UNUSED;
1367 {
1368 #ifdef DLL_SUPPORT
1369 #ifdef TARGET_IS_i386pe
1370 pe_dll_id_target ("pei-i386");
1371 #endif
1372 #ifdef TARGET_IS_shpe
1373 pe_dll_id_target ("pei-shl");
1374 #endif
1375 #ifdef TARGET_IS_mipspe
1376 pe_dll_id_target ("pei-mips");
1377 #endif
1378 #ifdef TARGET_IS_armpe
1379 pe_dll_id_target ("pei-arm-little");
1380 #endif
1381 if (bfd_get_format (entry->the_bfd) == bfd_object)
1382 {
1383 const char *ext = entry->filename + strlen (entry->filename) - 4;
1384 if (strcmp (ext, ".dll") == 0 || strcmp (ext, ".DLL") == 0)
1385 return pe_implied_import_dll (entry->filename);
1386 }
1387 #endif
1388 return false;
1389 }
1390
1391 static void
1392 gld_${EMULATION_NAME}_finish ()
1393 {
1394 #if defined(TARGET_IS_armpe) || defined(TARGET_IS_arm_epoc_pe)
1395 struct bfd_link_hash_entry * h;
1396
1397 if (thumb_entry_symbol != NULL)
1398 {
1399 h = bfd_link_hash_lookup (link_info.hash, thumb_entry_symbol, false, false, true);
1400
1401 if (h != (struct bfd_link_hash_entry *) NULL
1402 && (h->type == bfd_link_hash_defined
1403 || h->type == bfd_link_hash_defweak)
1404 && h->u.def.section->output_section != NULL)
1405 {
1406 static char buffer[32];
1407 bfd_vma val;
1408
1409 /* Special procesing is required for a Thumb entry symbol. The
1410 bottom bit of its address must be set. */
1411 val = (h->u.def.value
1412 + bfd_get_section_vma (output_bfd,
1413 h->u.def.section->output_section)
1414 + h->u.def.section->output_offset);
1415
1416 val |= 1;
1417
1418 /* Now convert this value into a string and store it in entry_symbol
1419 where the lang_finish() function will pick it up. */
1420 buffer[0] = '0';
1421 buffer[1] = 'x';
1422
1423 sprintf_vma (buffer + 2, val);
1424
1425 if (entry_symbol != NULL && entry_from_cmdline)
1426 einfo (_("%P: warning: '--thumb-entry %s' is overriding '-e %s'\n"),
1427 thumb_entry_symbol, entry_symbol);
1428 entry_symbol = buffer;
1429 }
1430 else
1431 einfo (_("%P: warning: connot find thumb start symbol %s\n"), thumb_entry_symbol);
1432 }
1433 #endif /* defined(TARGET_IS_armpe) || defined(TARGET_IS_arm_epoc_pe) */
1434
1435 #ifdef DLL_SUPPORT
1436 if (link_info.shared)
1437 {
1438 pe_dll_fill_sections (output_bfd, &link_info);
1439 if (pe_implib_filename)
1440 pe_dll_generate_implib (pe_def_file, pe_implib_filename);
1441 }
1442 #if defined(TARGET_IS_shpe) || defined(TARGET_IS_mipspe)
1443 /* ARM doesn't need relocs. */
1444 else
1445 {
1446 pe_exe_fill_sections (output_bfd, &link_info);
1447 }
1448 #endif
1449
1450 if (pe_out_def_filename)
1451 pe_dll_generate_def_file (pe_out_def_filename);
1452 #endif /* DLL_SUPPORT */
1453
1454 /* I don't know where .idata gets set as code, but it shouldn't be */
1455 {
1456 asection *asec = bfd_get_section_by_name (output_bfd, ".idata");
1457 if (asec)
1458 {
1459 asec->flags &= ~SEC_CODE;
1460 asec->flags |= SEC_DATA;
1461 }
1462 }
1463 }
1464
1465 \f
1466 /* Find the last output section before given output statement.
1467 Used by place_orphan. */
1468
1469 static asection *
1470 output_prev_sec_find (os)
1471 lang_output_section_statement_type *os;
1472 {
1473 asection *s = (asection *) NULL;
1474 lang_statement_union_type *u;
1475 lang_output_section_statement_type *lookup;
1476
1477 for (u = lang_output_section_statement.head;
1478 u != (lang_statement_union_type *) NULL;
1479 u = lookup->next)
1480 {
1481 lookup = &u->output_section_statement;
1482 if (lookup == os)
1483 return s;
1484
1485 if (lookup->bfd_section != NULL && lookup->bfd_section->owner != NULL)
1486 s = lookup->bfd_section;
1487 }
1488
1489 return NULL;
1490 }
1491
1492 /* Place an orphan section.
1493
1494 We use this to put sections in a reasonable place in the file, and
1495 to ensure that they are aligned as required.
1496
1497 We handle grouped sections here as well. A section named .foo$nn
1498 goes into the output section .foo. All grouped sections are sorted
1499 by name.
1500
1501 Grouped sections for the default sections are handled by the
1502 default linker script using wildcards, and are sorted by
1503 sort_sections. */
1504
1505 struct orphan_save
1506 {
1507 lang_output_section_statement_type *os;
1508 asection **section;
1509 lang_statement_union_type **stmt;
1510 };
1511
1512 /*ARGSUSED*/
1513 static boolean
1514 gld_${EMULATION_NAME}_place_orphan (file, s)
1515 lang_input_statement_type *file;
1516 asection *s;
1517 {
1518 const char *secname;
1519 char *hold_section_name;
1520 char *dollar = NULL;
1521 const char *ps = NULL;
1522 lang_output_section_statement_type *os;
1523 lang_statement_list_type add_child;
1524
1525 secname = bfd_get_section_name (s->owner, s);
1526
1527 /* Look through the script to see where to place this section. */
1528
1529 hold_section_name = xstrdup (secname);
1530 if (!link_info.relocateable)
1531 {
1532 dollar = strchr (hold_section_name, '$');
1533 if (dollar != NULL)
1534 *dollar = '\0';
1535 }
1536
1537 os = lang_output_section_find (hold_section_name);
1538
1539 lang_list_init (&add_child);
1540
1541 if (os != NULL
1542 && (os->bfd_section == NULL
1543 || ((s->flags ^ os->bfd_section->flags)
1544 & (SEC_LOAD | SEC_ALLOC)) == 0))
1545 {
1546 /* We already have an output section statement with this
1547 name, and its bfd section, if any, has compatible flags. */
1548 lang_add_section (&add_child, s, os, file);
1549 }
1550 else
1551 {
1552 struct orphan_save *place;
1553 static struct orphan_save hold_text;
1554 static struct orphan_save hold_rdata;
1555 static struct orphan_save hold_data;
1556 static struct orphan_save hold_bss;
1557 char *outsecname;
1558 lang_statement_list_type *old;
1559 lang_statement_list_type add;
1560 etree_type *address;
1561
1562 /* Try to put the new output section in a reasonable place based
1563 on the section name and section flags. */
1564 #define HAVE_SECTION(hold, name) \
1565 (hold.os != NULL || (hold.os = lang_output_section_find (name)) != NULL)
1566
1567 place = NULL;
1568 if ((s->flags & SEC_ALLOC) == 0)
1569 ;
1570 else if ((s->flags & SEC_HAS_CONTENTS) == 0
1571 && HAVE_SECTION (hold_bss, ".bss"))
1572 place = &hold_bss;
1573 else if ((s->flags & SEC_READONLY) == 0
1574 && HAVE_SECTION (hold_data, ".data"))
1575 place = &hold_data;
1576 else if ((s->flags & SEC_CODE) == 0
1577 && (s->flags & SEC_READONLY) != 0
1578 && HAVE_SECTION (hold_rdata, ".rdata"))
1579 place = &hold_rdata;
1580 else if ((s->flags & SEC_READONLY) != 0
1581 && HAVE_SECTION (hold_text, ".text"))
1582 place = &hold_text;
1583
1584 #undef HAVE_SECTION
1585
1586 /* Choose a unique name for the section. This will be needed if
1587 the same section name appears in the input file with
1588 different loadable or allocatable characteristics. */
1589 outsecname = xstrdup (hold_section_name);
1590 if (bfd_get_section_by_name (output_bfd, outsecname) != NULL)
1591 {
1592 unsigned int len;
1593 char *newname;
1594 unsigned int i;
1595
1596 len = strlen (outsecname);
1597 newname = xmalloc (len + 5);
1598 strcpy (newname, outsecname);
1599 i = 0;
1600 do
1601 {
1602 sprintf (newname + len, "%d", i);
1603 ++i;
1604 }
1605 while (bfd_get_section_by_name (output_bfd, newname) != NULL);
1606
1607 free (outsecname);
1608 outsecname = newname;
1609 }
1610
1611 /* Start building a list of statements for this section. */
1612 old = stat_ptr;
1613 stat_ptr = &add;
1614 lang_list_init (stat_ptr);
1615
1616 if (config.build_constructors)
1617 {
1618 /* If the name of the section is representable in C, then create
1619 symbols to mark the start and the end of the section. */
1620 for (ps = outsecname; *ps != '\0'; ps++)
1621 if (! isalnum ((unsigned char) *ps) && *ps != '_')
1622 break;
1623 if (*ps == '\0')
1624 {
1625 char *symname;
1626 etree_type *e_align;
1627
1628 symname = (char *) xmalloc (ps - outsecname + sizeof "___start_");
1629 sprintf (symname, "___start_%s", outsecname);
1630 e_align = exp_unop (ALIGN_K,
1631 exp_intop ((bfd_vma) 1 << s->alignment_power));
1632 lang_add_assignment (exp_assop ('=', symname, e_align));
1633 }
1634 }
1635
1636 if (link_info.relocateable || (s->flags & (SEC_LOAD | SEC_ALLOC)) == 0)
1637 address = exp_intop ((bfd_vma) 0);
1638 else
1639 {
1640 /* All sections in an executable must be aligned to a page
1641 boundary. */
1642 address = exp_unop (ALIGN_K,
1643 exp_nameop (NAME, "__section_alignment__"));
1644 }
1645
1646 os = lang_enter_output_section_statement (outsecname, address, 0,
1647 (bfd_vma) 0,
1648 (etree_type *) NULL,
1649 (etree_type *) NULL,
1650 (etree_type *) NULL);
1651
1652 lang_add_section (&add_child, s, os, file);
1653
1654 lang_leave_output_section_statement
1655 ((bfd_vma) 0, "*default*",
1656 (struct lang_output_section_phdr_list *) NULL, "*default*");
1657
1658 if (config.build_constructors && *ps == '\0')
1659 {
1660 char *symname;
1661
1662 /* lang_leave_ouput_section_statement resets stat_ptr. Put
1663 stat_ptr back where we want it. */
1664 if (place != NULL)
1665 stat_ptr = &add;
1666
1667 symname = (char *) xmalloc (ps - outsecname + sizeof "___stop_");
1668 sprintf (symname, "___stop_%s", outsecname);
1669 lang_add_assignment (exp_assop ('=', symname,
1670 exp_nameop (NAME, ".")));
1671 }
1672
1673 stat_ptr = old;
1674
1675 if (place != NULL)
1676 {
1677 asection *snew, **pps;
1678
1679 snew = os->bfd_section;
1680
1681 /* Shuffle the bfd section list to make the output file look
1682 neater. This is really only cosmetic. */
1683 if (place->section == NULL)
1684 {
1685 asection *bfd_section = place->os->bfd_section;
1686
1687 /* If the output statement hasn't been used to place
1688 any input sections (and thus doesn't have an output
1689 bfd_section), look for the closest prior output statement
1690 having an output section. */
1691 if (bfd_section == NULL)
1692 bfd_section = output_prev_sec_find (place->os);
1693
1694 if (bfd_section != NULL && bfd_section != snew)
1695 place->section = &bfd_section->next;
1696 }
1697
1698 if (place->section != NULL)
1699 {
1700 /* Unlink the section. */
1701 for (pps = &output_bfd->sections;
1702 *pps != snew;
1703 pps = &(*pps)->next)
1704 ;
1705 *pps = snew->next;
1706
1707 /* Now tack it on to the "place->os" section list. */
1708 snew->next = *place->section;
1709 *place->section = snew;
1710 }
1711
1712 /* Save the end of this list. Further ophans of this type will
1713 follow the one we've just added. */
1714 place->section = &snew->next;
1715
1716 /* The following is non-cosmetic. We try to put the output
1717 statements in some sort of reasonable order here, because
1718 they determine the final load addresses of the orphan
1719 sections. In addition, placing output statements in the
1720 wrong order may require extra segments. For instance,
1721 given a typical situation of all read-only sections placed
1722 in one segment and following that a segment containing all
1723 the read-write sections, we wouldn't want to place an orphan
1724 read/write section before or amongst the read-only ones. */
1725 if (add.head != NULL)
1726 {
1727 if (place->stmt == NULL)
1728 {
1729 /* Put the new statement list right at the head. */
1730 *add.tail = place->os->header.next;
1731 place->os->header.next = add.head;
1732 }
1733 else
1734 {
1735 /* Put it after the last orphan statement we added. */
1736 *add.tail = *place->stmt;
1737 *place->stmt = add.head;
1738 }
1739
1740 /* Fix the global list pointer if we happened to tack our
1741 new list at the tail. */
1742 if (*old->tail == add.head)
1743 old->tail = add.tail;
1744
1745 /* Save the end of this list. */
1746 place->stmt = add.tail;
1747 }
1748 }
1749 }
1750
1751 {
1752 lang_statement_union_type **pl = &os->children.head;
1753
1754 if (dollar != NULL)
1755 {
1756 boolean found_dollar;
1757
1758 /* The section name has a '$'. Sort it with the other '$'
1759 sections. */
1760
1761 found_dollar = false;
1762 for ( ; *pl != NULL; pl = &(*pl)->header.next)
1763 {
1764 lang_input_section_type *ls;
1765 const char *lname;
1766
1767 if ((*pl)->header.type != lang_input_section_enum)
1768 continue;
1769
1770 ls = &(*pl)->input_section;
1771
1772 lname = bfd_get_section_name (ls->ifile->the_bfd, ls->section);
1773 if (strchr (lname, '$') == NULL)
1774 {
1775 if (found_dollar)
1776 break;
1777 }
1778 else
1779 {
1780 found_dollar = true;
1781 if (strcmp (secname, lname) < 0)
1782 break;
1783 }
1784 }
1785 }
1786
1787 if (add_child.head != NULL)
1788 {
1789 add_child.head->header.next = *pl;
1790 *pl = add_child.head;
1791 }
1792 }
1793
1794 free (hold_section_name);
1795
1796 return true;
1797 }
1798
1799 static boolean
1800 gld_${EMULATION_NAME}_open_dynamic_archive (arch, search, entry)
1801 const char * arch ATTRIBUTE_UNUSED;
1802 search_dirs_type * search;
1803 lang_input_statement_type * entry;
1804 {
1805 const char * filename;
1806 char * string;
1807
1808 if (! entry->is_archive)
1809 return false;
1810
1811 filename = entry->filename;
1812
1813 string = (char *) xmalloc (strlen (search->name)
1814 + strlen (filename)
1815 + sizeof "/lib.a.dll"
1816 #ifdef DLL_SUPPORT
1817 + (pe_dll_search_prefix ? strlen (pe_dll_search_prefix) : 0)
1818 #endif
1819 + 1);
1820
1821 /* Try "libfoo.dll.a" first (preferred explicit import library for dll's */
1822 sprintf (string, "%s/lib%s.dll.a", search->name, filename);
1823
1824 if (! ldfile_try_open_bfd (string, entry))
1825 {
1826 /* Try "foo.dll.a" next (alternate explicit import library for dll's */
1827 sprintf (string, "%s/%s.dll.a", search->name, filename);
1828 if (! ldfile_try_open_bfd (string, entry))
1829 {
1830 /*
1831 Try libfoo.a next. Normally, this would be interpreted as a static
1832 library, but it *could* be an import library. For backwards compatibility,
1833 libfoo.a needs to ==precede== libfoo.dll and foo.dll in the search,
1834 or sometimes errors occur when building legacy packages.
1835
1836 Putting libfoo.a here means that in a failure case (i.e. the library
1837 -lfoo is not found) we will search for libfoo.a twice before
1838 giving up -- once here, and once when searching for a "static" lib.
1839 for a "static" lib.
1840 */
1841 /* Try "libfoo.a" (import lib, or static lib, but must
1842 take precedence over dll's) */
1843 sprintf (string, "%s/lib%s.a", search->name, filename);
1844 if (! ldfile_try_open_bfd (string, entry))
1845 {
1846 #ifdef DLL_SUPPORT
1847 if (pe_dll_search_prefix)
1848 {
1849 /* Try "<prefix>foo.dll" (preferred dll name, if specified) */
1850 sprintf (string, "%s/%s%s.dll", search->name, pe_dll_search_prefix, filename);
1851 if (! ldfile_try_open_bfd (string, entry))
1852 {
1853 /* Try "libfoo.dll" (default preferred dll name) */
1854 sprintf (string, "%s/lib%s.dll", search->name, filename);
1855 if (! ldfile_try_open_bfd (string, entry))
1856 {
1857 /* Finally, try "foo.dll" (alternate dll name) */
1858 sprintf (string, "%s/%s.dll", search->name, filename);
1859 if (! ldfile_try_open_bfd (string, entry))
1860 {
1861 free (string);
1862 return false;
1863 }
1864 }
1865 }
1866 }
1867 else /* pe_dll_search_prefix not specified */
1868 #endif
1869 {
1870 /* Try "libfoo.dll" (preferred dll name) */
1871 sprintf (string, "%s/lib%s.dll", search->name, filename);
1872 if (! ldfile_try_open_bfd (string, entry))
1873 {
1874 /* Finally, try "foo.dll" (alternate dll name) */
1875 sprintf (string, "%s/%s.dll", search->name, filename);
1876 if (! ldfile_try_open_bfd (string, entry))
1877 {
1878 free (string);
1879 return false;
1880 }
1881 }
1882 }
1883 }
1884 }
1885 }
1886
1887 entry->filename = string;
1888
1889 return true;
1890 }
1891
1892 static int
1893 gld_${EMULATION_NAME}_find_potential_libraries (name, entry)
1894 char * name;
1895 lang_input_statement_type * entry;
1896 {
1897 return ldfile_open_file_search (name, entry, "", ".lib");
1898 }
1899 \f
1900 static char *
1901 gld_${EMULATION_NAME}_get_script(isfile)
1902 int *isfile;
1903 EOF
1904 # Scripts compiled in.
1905 # sed commands to quote an ld script as a C string.
1906 sc="-f stringify.sed"
1907
1908 cat >>e${EMULATION_NAME}.c <<EOF
1909 {
1910 *isfile = 0;
1911
1912 if (link_info.relocateable == true && config.build_constructors == true)
1913 return
1914 EOF
1915 sed $sc ldscripts/${EMULATION_NAME}.xu >> e${EMULATION_NAME}.c
1916 echo ' ; else if (link_info.relocateable == true) return' >> e${EMULATION_NAME}.c
1917 sed $sc ldscripts/${EMULATION_NAME}.xr >> e${EMULATION_NAME}.c
1918 echo ' ; else if (!config.text_read_only) return' >> e${EMULATION_NAME}.c
1919 sed $sc ldscripts/${EMULATION_NAME}.xbn >> e${EMULATION_NAME}.c
1920 echo ' ; else if (!config.magic_demand_paged) return' >> e${EMULATION_NAME}.c
1921 sed $sc ldscripts/${EMULATION_NAME}.xn >> e${EMULATION_NAME}.c
1922 echo ' ; else return' >> e${EMULATION_NAME}.c
1923 sed $sc ldscripts/${EMULATION_NAME}.x >> e${EMULATION_NAME}.c
1924 echo '; }' >> e${EMULATION_NAME}.c
1925
1926 cat >>e${EMULATION_NAME}.c <<EOF
1927
1928
1929 struct ld_emulation_xfer_struct ld_${EMULATION_NAME}_emulation =
1930 {
1931 gld_${EMULATION_NAME}_before_parse,
1932 syslib_default,
1933 hll_default,
1934 gld_${EMULATION_NAME}_after_parse,
1935 gld_${EMULATION_NAME}_after_open,
1936 after_allocation_default,
1937 set_output_arch_default,
1938 ldemul_default_target,
1939 gld_${EMULATION_NAME}_before_allocation,
1940 gld_${EMULATION_NAME}_get_script,
1941 "${EMULATION_NAME}",
1942 "${OUTPUT_FORMAT}",
1943 gld_${EMULATION_NAME}_finish, /* finish */
1944 NULL, /* create output section statements */
1945 gld_${EMULATION_NAME}_open_dynamic_archive,
1946 gld_${EMULATION_NAME}_place_orphan,
1947 gld_${EMULATION_NAME}_set_symbols,
1948 gld_${EMULATION_NAME}_parse_args,
1949 gld_${EMULATION_NAME}_unrecognized_file,
1950 gld_${EMULATION_NAME}_list_options,
1951 gld_${EMULATION_NAME}_recognized_file,
1952 gld_${EMULATION_NAME}_find_potential_libraries
1953 };
1954 EOF
This page took 0.078054 seconds and 4 git commands to generate.