Commit | Line | Data |
---|---|---|
28c9d252 | 1 | /* AVR-specific support for 32-bit ELF. |
cd123cb7 | 2 | Copyright 2006, 2007 Free Software Foundation, Inc. |
28c9d252 NC |
3 | |
4 | Written by Bjoern Haase <bjoern.m.haase@web.de> | |
5 | ||
6 | This file is part of BFD, the Binary File Descriptor library. | |
7 | ||
8 | This program is free software; you can redistribute it and/or modify | |
9 | it under the terms of the GNU General Public License as published by | |
cd123cb7 | 10 | the Free Software Foundation; either version 3 of the License, or |
28c9d252 NC |
11 | (at your option) any later version. |
12 | ||
13 | This program is distributed in the hope that it will be useful, | |
14 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 | GNU General Public License for more details. | |
17 | ||
18 | You should have received a copy of the GNU General Public License | |
19 | along with this program; if not, write to the Free Software | |
20 | Foundation, Inc., 51 Franklin Street - Fifth Floor, | |
21 | Boston, MA 02110-1301, USA. */ | |
22 | ||
23 | ||
24 | /* These four functions will be called from the ld back-end. */ | |
25 | ||
26 | extern void | |
27 | elf32_avr_setup_params (struct bfd_link_info *, bfd *, asection *, | |
28 | bfd_boolean, bfd_boolean, bfd_boolean, | |
29 | bfd_vma, bfd_boolean); | |
30 | ||
31 | extern int | |
32 | elf32_avr_setup_section_lists (bfd *, struct bfd_link_info *); | |
33 | ||
34 | extern bfd_boolean | |
35 | elf32_avr_size_stubs (bfd *, struct bfd_link_info *, bfd_boolean); | |
36 | ||
37 | extern bfd_boolean | |
38 | elf32_avr_build_stubs (struct bfd_link_info *); |