* i386linux.c (linux_link_create_dynamic_sections): Create section
[external/binutils.git] / bfd / i386linux.c
1 /* BFD back-end for linux flavored i386 a.out binaries.
2    Copyright (C) 1992, 1993, 1994 Free Software Foundation, Inc.
3
4 This file is part of BFD, the Binary File Descriptor library.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
19
20 #define PAGE_SIZE       4096
21 #define ZMAGIC_DISK_BLOCK_SIZE 1024
22 #define SEGMENT_SIZE    4096
23 #define TEXT_START_ADDR 0x0
24 #define N_SHARED_LIB(x) 0
25 #define BYTES_IN_WORD 4
26
27 #include "bfd.h"
28 #include "sysdep.h"
29 #include "libbfd.h"
30 #include "aout/aout64.h"
31 #include "aout/stab_gnu.h"
32 #include "aout/ar.h"
33 #include "libaout.h"           /* BFD a.out internal data structures */
34
35 #define DEFAULT_ARCH bfd_arch_i386
36 #define MY(OP) CAT(i386linux_,OP)
37 #define TARGETNAME "a.out-i386-linux"
38
39 /* We always generate QMAGIC files in preference to ZMAGIC files.  It
40    would be possible to make this a linker option, if that ever
41    becomes important.  */
42
43 static void MY_final_link_callback
44   PARAMS ((bfd *, file_ptr *, file_ptr *, file_ptr *));
45
46 static boolean
47 i386linux_bfd_final_link (abfd, info)
48      bfd *abfd;
49      struct bfd_link_info *info;
50 {
51   obj_aout_subformat (abfd) = q_magic_format;
52   return NAME(aout,final_link) (abfd, info, MY_final_link_callback);
53 }
54
55 #define MY_bfd_final_link i386linux_bfd_final_link
56
57 /* Set the machine type correctly.  */
58
59 static boolean
60 i386linux_write_object_contents (abfd)
61      bfd *abfd;
62 {
63   struct external_exec exec_bytes;
64   struct internal_exec *execp = exec_hdr (abfd);
65
66   N_SET_MACHTYPE (*execp, M_386);
67
68   obj_reloc_entry_size (abfd) = RELOC_STD_SIZE;
69
70   WRITE_HEADERS(abfd, execp);
71
72   return true;
73 }
74
75 #define MY_write_object_contents i386linux_write_object_contents
76 \f
77 /* Code to link against Linux a.out shared libraries.  */
78
79 /* See if a symbol name is a reference to the global offset table.  */
80
81 #ifndef GOT_REF_PREFIX
82 #define GOT_REF_PREFIX  "__GOT_"
83 #endif
84
85 #define IS_GOT_SYM(name) \
86   (strncmp (name, GOT_REF_PREFIX, sizeof GOT_REF_PREFIX - 1) == 0)
87
88 /* See if a symbol name is a reference to the procedure linkage table.  */
89
90 #ifndef PLT_REF_PREFIX
91 #define PLT_REF_PREFIX  "__PLT_"
92 #endif
93
94 #define IS_PLT_SYM(name) \
95   (strncmp (name, PLT_REF_PREFIX, sizeof PLT_REF_PREFIX - 1) == 0)
96
97 /* This special symbol is a set vector that contains a list of
98    pointers to fixup tables.  It will be present in any dynamicly
99    linked file.  The linker generated fixup table should also be added
100    to the list, and it should always appear in the second slot (the
101    first one is a dummy with a magic number that is defined in
102    crt0.o).  */
103
104 #ifndef SHARABLE_CONFLICTS
105 #define SHARABLE_CONFLICTS "__SHARABLE_CONFLICTS__"
106 #endif
107
108 /* We keep a list of fixups.  The terminology is a bit strange, but
109    each fixup contains two 32 bit numbers.  A regular fixup contains
110    an address and a pointer, and at runtime we should store the
111    address at the location pointed to by the pointer.  A builtin fixup
112    contains two pointers, and we should read the address using one
113    pointer and store it at the location pointed to by the other
114    pointer.  Builtin fixups come into play when we have duplicate
115    __GOT__ symbols for the same variable.  The builtin fixup will copy
116    the GOT pointer from one over into the other.  */
117
118 struct fixup
119 {
120   struct fixup *next;
121   struct linux_link_hash_entry *h;
122   bfd_vma value;
123
124   /* Nonzero if this is a jump instruction that needs to be fixed,
125      zero if this is just a pointer */
126   char jump;
127
128   char builtin;
129 };
130
131 /* We don't need a special hash table entry structure, but we do need
132    to keep some information between linker passes, so we use a special
133    hash table.  */
134
135 struct linux_link_hash_entry
136 {
137   struct aout_link_hash_entry root;
138 };
139
140 struct linux_link_hash_table
141 {
142   struct aout_link_hash_table root;
143
144   /* First dynamic object found in link.  */
145   bfd *dynobj;
146
147   /* Number of fixups.  */
148   size_t fixup_count;
149
150   /* Number of builtin fixups.  */
151   size_t local_builtins;
152
153   /* List of fixups.  */
154   struct fixup *fixup_list;
155 };
156
157 static struct bfd_hash_entry *linux_link_hash_newfunc
158   PARAMS ((struct bfd_hash_entry *, struct bfd_hash_table *, const char *));
159 static struct bfd_link_hash_table *linux_link_hash_table_create
160   PARAMS ((bfd *));
161 static struct fixup *new_fixup
162   PARAMS ((struct bfd_link_info *, struct linux_link_hash_entry *,
163            bfd_vma, int));
164 static boolean linux_link_create_dynamic_sections
165   PARAMS ((bfd *, struct bfd_link_info *));
166 static boolean linux_add_one_symbol
167   PARAMS ((struct bfd_link_info *, bfd *, const char *, flagword, asection *,
168            bfd_vma, const char *, boolean, boolean,
169            struct bfd_link_hash_entry **));
170 static boolean linux_tally_symbols
171   PARAMS ((struct linux_link_hash_entry *, PTR));
172 static boolean linux_finish_dynamic_link
173   PARAMS ((bfd *, struct bfd_link_info *));
174
175 /* Routine to create an entry in an Linux link hash table.  */
176
177 static struct bfd_hash_entry *
178 linux_link_hash_newfunc (entry, table, string)
179      struct bfd_hash_entry *entry;
180      struct bfd_hash_table *table;
181      const char *string;
182 {
183   struct linux_link_hash_entry *ret = (struct linux_link_hash_entry *) entry;
184
185   /* Allocate the structure if it has not already been allocated by a
186      subclass.  */
187   if (ret == (struct linux_link_hash_entry *) NULL)
188     ret = ((struct linux_link_hash_entry *)
189            bfd_hash_allocate (table, sizeof (struct linux_link_hash_entry)));
190   if (ret == NULL)
191     return (struct bfd_hash_entry *) ret;
192
193   /* Call the allocation method of the superclass.  */
194   ret = ((struct linux_link_hash_entry *)
195          NAME(aout,link_hash_newfunc) ((struct bfd_hash_entry *) ret,
196                                        table, string));
197   if (ret != NULL)
198     {
199       /* Set local fields; there aren't any.  */
200     }
201
202   return (struct bfd_hash_entry *) ret;
203 }
204
205 /* Create a Linux link hash table.  */
206
207 static struct bfd_link_hash_table *
208 linux_link_hash_table_create (abfd)
209      bfd *abfd;
210 {
211   struct linux_link_hash_table *ret;
212
213   ret = ((struct linux_link_hash_table *)
214          malloc (sizeof (struct linux_link_hash_table)));
215   if (ret == (struct linux_link_hash_table *) NULL)
216     {
217       bfd_set_error (bfd_error_no_memory);
218       return (struct bfd_link_hash_table *) NULL;
219     }
220   if (! NAME(aout,link_hash_table_init) (&ret->root, abfd,
221                                          linux_link_hash_newfunc))
222     {
223       free (ret);
224       return (struct bfd_link_hash_table *) NULL;
225     }
226
227   ret->dynobj = NULL;
228   ret->fixup_count = 0;
229   ret->local_builtins = 0;
230   ret->fixup_list = NULL;
231
232   return &ret->root.root;
233 }
234
235 /* Look up an entry in a Linux link hash table.  */
236
237 #define linux_link_hash_lookup(table, string, create, copy, follow) \
238   ((struct linux_link_hash_entry *) \
239    aout_link_hash_lookup (&(table)->root, (string), (create), (copy),\
240                           (follow)))
241
242 /* Traverse a Linux link hash table.  */
243
244 #define linux_link_hash_traverse(table, func, info)                     \
245   (aout_link_hash_traverse                                              \
246    (&(table)->root,                                                     \
247     (boolean (*) PARAMS ((struct aout_link_hash_entry *, PTR))) (func), \
248     (info)))
249
250 /* Get the Linux link hash table from the info structure.  This is
251    just a cast.  */
252
253 #define linux_hash_table(p) ((struct linux_link_hash_table *) ((p)->hash))
254
255 /* Store the information for a new fixup.  */
256
257 static struct fixup *
258 new_fixup (info, h, value, builtin)
259      struct bfd_link_info *info;
260      struct linux_link_hash_entry *h;
261      bfd_vma value;
262      int builtin;
263 {
264   struct fixup *f;
265
266   f = (struct fixup *) bfd_hash_allocate (&info->hash->table,
267                                           sizeof (struct fixup));
268   if (f == NULL)
269     return f;
270   f->next = linux_hash_table (info)->fixup_list;
271   linux_hash_table (info)->fixup_list = f;
272   f->h = h;
273   f->value = value;
274   f->builtin = builtin;
275   f->jump = 0;
276   ++linux_hash_table (info)->fixup_count;
277   return f;
278 }
279
280 /* We come here once we realize that we are going to link to a shared
281    library.  We need to create a special section that contains the
282    fixup table, and we ultimately need to add a pointer to this into
283    the set vector for SHARABLE_CONFLICTS.  At this point we do not
284    know the size of the section, but that's OK - we just need to
285    create it for now.  */
286
287 static boolean
288 linux_link_create_dynamic_sections (abfd, info)
289      bfd *abfd;
290      struct bfd_link_info *info;
291 {
292   flagword flags;
293   register asection *s;
294
295   /* Note that we set the SEC_IN_MEMORY flag.  */
296   flags = SEC_ALLOC | SEC_LOAD | SEC_HAS_CONTENTS | SEC_IN_MEMORY;
297
298   /* We choose to use the name ".linux-dynamic" for the fixup table.
299      Why not? */
300   s = bfd_make_section (abfd, ".linux-dynamic");
301   if (s == NULL
302       || ! bfd_set_section_flags (abfd, s, flags)
303       || ! bfd_set_section_alignment (abfd, s, 2))
304     return false;
305   s->_raw_size = 0;
306   s->contents = 0;
307
308   return true;
309 }
310
311 /* Function to add a single symbol to the linker hash table.  This is
312    a wrapper around _bfd_generic_link_add_one_symbol which handles the
313    tweaking needed for dynamic linking support.  */
314
315 static boolean
316 linux_add_one_symbol (info, abfd, name, flags, section, value, string,
317                       copy, collect, hashp)
318      struct bfd_link_info *info;
319      bfd *abfd;
320      const char *name;
321      flagword flags;
322      asection *section;
323      bfd_vma value;
324      const char *string;
325      boolean copy;
326      boolean collect;
327      struct bfd_link_hash_entry **hashp;
328 {
329   struct linux_link_hash_entry *h;
330   boolean insert;
331
332   /* Look up and see if we already have this symbol in the hash table.
333      If we do, and the defining entry is from a shared library, we
334      need to create the dynamic sections.
335
336      FIXME: What if abfd->xvec != info->hash->creator?  We may want to
337      be able to link Linux a.out and ELF objects together, but serious
338      confusion is possible.  */
339
340   insert = false;
341
342   if (! info->relocateable
343       && linux_hash_table (info)->dynobj == NULL
344       && strcmp (name, SHARABLE_CONFLICTS) == 0
345       && (flags & BSF_CONSTRUCTOR) != 0)
346     {
347       if (! linux_link_create_dynamic_sections (abfd, info))
348         return false;
349       linux_hash_table (info)->dynobj = abfd;
350       insert = true;
351     }
352
353   if (bfd_is_abs_section (section)
354       && (IS_GOT_SYM (name) || IS_PLT_SYM (name)))
355     {
356       h = linux_link_hash_lookup (linux_hash_table (info), name, false,
357                                   false, false);
358       if (h != NULL
359           && h->root.root.type == bfd_link_hash_defined)
360         {
361           struct fixup *f;
362
363           if (hashp != NULL)
364             *hashp = (struct bfd_link_hash_entry *) h;
365
366           f = new_fixup (info, h, value, ! IS_PLT_SYM (name));
367           if (f == NULL)
368             return false;
369           f->jump = IS_PLT_SYM (name);
370
371           return true;
372         }
373     }
374
375   /* Do the usual procedure for adding a symbol.  */
376   if (! _bfd_generic_link_add_one_symbol (info, abfd, name, flags, section,
377                                           value, string, copy, collect,
378                                           hashp))
379     return false;
380
381   /* Insert a pointer to our table in the set vector.  The dynamic
382      linker requires this information */
383   if (insert)
384     {
385       asection *s;
386
387       /* Here we do our special thing to add the pointer to the
388          dynamic section in the SHARABLE_CONFLICTS set vector.  */
389       s = bfd_get_section_by_name (linux_hash_table (info)->dynobj,
390                                    ".linux-dynamic");
391       BFD_ASSERT (s != NULL);
392
393       if (! (_bfd_generic_link_add_one_symbol
394              (info, linux_hash_table (info)->dynobj, SHARABLE_CONFLICTS,
395               BSF_GLOBAL | BSF_CONSTRUCTOR, s, 0, NULL, false, false, NULL)))
396         return false;
397     }
398
399   return true;
400 }
401
402 /* We will crawl the hash table and come here for every global symbol.
403    We will examine each entry and see if there are indications that we
404    need to add a fixup.  There are two possible cases - one is where
405    you have duplicate definitions of PLT or GOT symbols - these will
406    have already been caught and added as "builtin" fixups.  If we find
407    that the corresponding non PLT/GOT symbol is also present, we
408    convert it to a regular fixup instead.
409
410    This function is called via linux_link_hash_traverse.  */
411
412 static boolean
413 linux_tally_symbols (h, data)
414      struct linux_link_hash_entry *h;
415      PTR data;
416 {
417   struct bfd_link_info *info = (struct bfd_link_info *) data;
418   struct fixup *f, *f1;
419   int is_plt;
420   struct linux_link_hash_entry *h1, *h2;
421   boolean exists;
422
423   /* If this symbol is not a PLT/GOT, we do not even need to look at it */
424   is_plt = IS_PLT_SYM (h->root.root.root.string);
425
426   if (is_plt || IS_GOT_SYM (h->root.root.root.string))
427     {
428       /* Look up this symbol twice.  Once just as a regular lookup,
429          and then again following all of the indirect links until we
430          reach a real symbol.  */
431       h1 = linux_link_hash_lookup (linux_hash_table (info),
432                                    (h->root.root.root.string
433                                     + sizeof PLT_REF_PREFIX - 1),
434                                    false, false, true);
435       /* h2 does not follow indirect symbols. */
436       h2 = linux_link_hash_lookup (linux_hash_table (info), 
437                                    (h->root.root.root.string
438                                     + sizeof PLT_REF_PREFIX - 1),
439                                    false, false, false);
440
441       /* The real symbol must exist but if it is also an ABS symbol,
442          there is no need to have a fixup.  This is because they both
443          came from the same library.  If on the other hand, we had to
444          use an indirect symbol to get to the real symbol, we add the
445          fixup anyway, since there are cases where these symbols come
446          from different shared libraries */
447       if (h1 != NULL
448           && ((h1->root.root.type == bfd_link_hash_defined
449                && ! bfd_is_abs_section (h1->root.root.u.def.section))
450               || h2->root.root.type == bfd_link_hash_indirect))
451         {
452           /* See if there is a "builtin" fixup already present
453              involving this symbol.  If so, convert it to a regular
454              fixup.  In the end, this relaxes some of the requirements
455              about the order of performing fixups.  */
456           exists = false;
457           for (f1 = linux_hash_table (info)->fixup_list;
458                f1 != NULL;
459                f1 = f1->next)
460             {
461               if (f1->h != h
462                   || (! f1->builtin && ! f1->jump))
463                 continue;
464               if (! exists
465                   && bfd_is_abs_section (h->root.root.u.def.section))
466                 {
467                   f = new_fixup (info, h1, f1->h->root.root.u.def.value, 0);
468                   f->jump = is_plt;
469                 }
470               f1->h = h1;
471               f1->jump = is_plt;
472               f1->builtin = 0;
473               exists = true;
474             }
475           if (! exists
476               && bfd_is_abs_section (h->root.root.u.def.section))
477             {
478               f = new_fixup (info, h1, h->root.root.u.def.value, 0);
479               if (f == NULL)
480                 {
481                   /* FIXME: No way to return error.  */
482                   abort ();
483                 }
484               f->jump = is_plt;
485             }
486         }
487
488       /* Quick and dirty way of stripping these symbols from the
489          symtab. */
490       if (bfd_is_abs_section (h->root.root.u.def.section))
491         h->root.written = true;
492     }
493
494   return true;
495 }
496
497 /* This is called to set the size of the .linux-dynamic section is.
498    It is called by the Linux linker emulation before_allocation
499    routine.  We have finished reading all of the input files, and now
500    we just scan the hash tables to find out how many additional fixups
501    are required.  */
502
503 boolean
504 bfd_linux_size_dynamic_sections (output_bfd, info)
505      bfd *output_bfd;
506      struct bfd_link_info *info;
507 {
508   struct fixup *f;
509   asection *s;
510
511   /* First find the fixups... */
512   linux_link_hash_traverse (linux_hash_table (info),
513                             linux_tally_symbols,
514                             (PTR) info);
515
516   /* If there are builtin fixups, leave room for a marker.  This is
517      used by the dynamic linker so that it knows that all that follow
518      are builtin fixups instead of regular fixups.  */
519   for (f = linux_hash_table (info)->fixup_list; f != NULL; f = f->next)
520     {
521       if (f->builtin)
522         {
523           ++linux_hash_table (info)->fixup_count;
524           ++linux_hash_table (info)->local_builtins;
525           break;
526         }
527     }
528
529   if (linux_hash_table (info)->dynobj == NULL)
530     {
531       if (linux_hash_table (info)->fixup_count > 0)
532         abort ();
533       return true;
534     }
535
536   /* Allocate memory for our fixup table.  We will fill it in later.  */
537   s = bfd_get_section_by_name (linux_hash_table (info)->dynobj,
538                                ".linux-dynamic");
539   if (s != NULL)
540     {
541       s->_raw_size = 8 + linux_hash_table (info)->fixup_count * 8;
542       s->contents = (bfd_byte *) bfd_alloc (output_bfd, s->_raw_size);
543       if (s->contents == NULL)
544         {
545           bfd_set_error (bfd_error_no_memory);
546           return false;
547         }
548       memset (s->contents, 0, s->_raw_size);
549     }
550
551   return true;
552 }
553
554 /* We come here once we are ready to actually write the fixup table to
555    the output file.  Scan the fixup tables and so forth and generate
556    the stuff we need.  */
557
558 static boolean
559 linux_finish_dynamic_link (output_bfd, info)
560      bfd *output_bfd;
561      struct bfd_link_info *info;
562 {
563   asection *s, *os, *is;
564   bfd_byte *fixup_table;
565   struct linux_link_hash_entry *h;
566   struct fixup *f;
567   unsigned int new_addr;
568   int section_offset;
569   int fixups_written;
570
571   if (linux_hash_table (info)->dynobj == NULL)
572     return true;
573
574   s = bfd_get_section_by_name (linux_hash_table (info)->dynobj,
575                                ".linux-dynamic");
576   BFD_ASSERT (s != NULL);
577   os = s->output_section;
578   fixups_written = 0;
579
580 #ifdef LINUX_LINK_DEBUG
581   printf ("Fixup table file offset: %x  VMA: %x\n", 
582           os->filepos + s->output_offset,
583           os->vma + s->output_offset);
584 #endif
585
586   fixup_table = s->contents;
587   bfd_put_32 (output_bfd, linux_hash_table (info)->fixup_count, fixup_table);
588   fixup_table += 4;
589
590   /* Fill in fixup table.  */
591   for (f = linux_hash_table (info)->fixup_list; f != NULL; f = f->next)
592     {
593       if (f->builtin)
594         continue;
595
596       if (f->h->root.root.type != bfd_link_hash_defined)
597         {
598           /* FIXME!  */
599           fprintf (stderr,
600                    "Symbol %s not defined for fixups\n",
601                    f->h->root.root.root.string);
602           continue;
603         }
604
605       is = f->h->root.root.u.def.section;
606       section_offset = is->output_section->vma + is->output_offset;
607       new_addr = f->h->root.root.u.def.value + section_offset;
608
609 #ifdef LINUX_LINK_DEBUG
610       printf ("Fixup(%d) %s: %x %x\n",f->jump, f->h->root.root.string,
611               new_addr, f->value);
612 #endif
613
614       if (f->jump)
615         {
616           /* Relative address */
617           new_addr = new_addr - (f->value + 5); 
618           bfd_put_32 (output_bfd, new_addr, fixup_table);
619           fixup_table += 4;
620           bfd_put_32 (output_bfd, f->value + 1, fixup_table);
621           fixup_table += 4;
622         }
623       else
624         {
625           bfd_put_32 (output_bfd, new_addr, fixup_table);
626           fixup_table += 4;
627           bfd_put_32 (output_bfd, f->value, fixup_table);
628           fixup_table += 4;
629         }
630       ++fixups_written;
631     }
632
633   if (linux_hash_table (info)->local_builtins != 0)
634     {
635       /* Special marker so we know to switch to the other type of fixup */
636       bfd_put_32 (output_bfd, 0, fixup_table);
637       fixup_table += 4;
638       bfd_put_32 (output_bfd, 0, fixup_table);
639       fixup_table += 4;
640       ++fixups_written;
641       for (f = linux_hash_table (info)->fixup_list; f != NULL; f = f->next)
642         {
643           if (! f->builtin)
644             continue;
645
646           if (f->h->root.root.type != bfd_link_hash_defined)
647             {
648               /* FIXME!  */
649               fprintf (stderr,
650                        "Symbol %s not defined for fixups\n",
651                        f->h->root.root.root.string);
652               continue;
653             }
654
655           is = f->h->root.root.u.def.section;
656           section_offset = is->output_section->vma + is->output_offset;
657           new_addr = f->h->root.root.u.def.value + section_offset;
658
659 #ifdef LINUX_LINK_DEBUG
660           printf ("Fixup(B) %s: %x %x\n", f->h->root.root.string,
661                   new_addr, f->value);
662 #endif
663
664           bfd_put_32 (output_bfd, new_addr, fixup_table);
665           fixup_table += 4;
666           bfd_put_32 (output_bfd, f->value, fixup_table);
667           fixup_table += 4;
668           ++fixups_written;
669         }
670   }
671
672   if (linux_hash_table (info)->fixup_count != fixups_written)
673     {
674       /* FIXME!  */
675       fprintf (stderr, "Warning: fixup count mismatch\n");
676       while (linux_hash_table (info)->fixup_count > fixups_written)
677         {
678           bfd_put_32 (output_bfd, 0, fixup_table);
679           fixup_table += 4;
680           bfd_put_32 (output_bfd, 0, fixup_table);
681           fixup_table += 4;
682           ++fixups_written;
683         }
684     }
685
686   h = linux_link_hash_lookup (linux_hash_table (info), 
687                               "__BUILTIN_FIXUPS__",
688                               false, false, false);
689
690   if (h != NULL && h->root.root.type == bfd_link_hash_defined)
691     {
692       is = h->root.root.u.def.section;
693       section_offset = is->output_section->vma + is->output_offset;
694       new_addr = h->root.root.u.def.value + section_offset;
695
696 #ifdef LINUX_LINK_DEBUG
697       printf ("Builtin fixup table at %x\n", new_addr);
698 #endif
699
700       bfd_put_32 (output_bfd, new_addr, fixup_table);
701     }
702   else
703     bfd_put_32 (output_bfd, 0, fixup_table);
704
705   if (bfd_seek (output_bfd, os->filepos + s->output_offset, SEEK_SET) != 0)
706     return false;
707
708   if (bfd_write ((PTR) s->contents, 1, s->_raw_size, output_bfd)
709       != s->_raw_size)
710     return false;
711
712   return true;
713 }
714
715 #define MY_bfd_link_hash_table_create linux_link_hash_table_create
716 #define MY_add_one_symbol linux_add_one_symbol
717 #define MY_finish_dynamic_link linux_finish_dynamic_link
718
719 #define MY_zmagic_contiguous 1
720
721 #include "aout-target.h"