summaryrefslogtreecommitdiff
path: root/ld/emultempl/avrelf.em
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2007-07-19 19:56:10 +0000
committerRoland McGrath <roland@gnu.org>2007-07-19 19:56:10 +0000
commit92b93329b58c744ea269b50f6278ed99416941a9 (patch)
tree415eaf8c24ce53fd9cdab8ed6af4f5cd6fdd1ede /ld/emultempl/avrelf.em
parent6b33789f617a22563c87282673aa23d9b8b4a3ca (diff)
downloadbinutils-gdb-92b93329b58c744ea269b50f6278ed99416941a9.tar.gz
2007-07-19 Roland McGrath <roland@redhat.com>
* genscripts.sh (source_em, fragment): New sh functions. Truncate e${EMULATION_NAME}.c file before .em script fills it. Use source_em in place of . for the .em script. * emultempl/generic.em: Use fragment and source_em functions. * emultempl/aix.em: Likewise. * emultempl/alphaelf.em: Likewise. * emultempl/armcoff.em: Likewise. * emultempl/armelf.em: Likewise. * emultempl/avrelf.em: Likewise. * emultempl/beos.em: Likewise. * emultempl/cr16elf.em: Likewise. * emultempl/crxelf.em: Likewise. * emultempl/elf-generic.em: Likewise. * emultempl/elf32.em: Likewise. * emultempl/genelf.em: Likewise. * emultempl/gld960.em: Likewise. * emultempl/gld960c.em: Likewise. * emultempl/hppaelf.em: Likewise. * emultempl/ia64elf.em: Likewise. * emultempl/irix.em: Likewise. * emultempl/linux.em: Likewise. * emultempl/lnk960.em: Likewise. * emultempl/m68hc1xelf.em: Likewise. * emultempl/m68kcoff.em: Likewise. * emultempl/m68kelf.em: Likewise. * emultempl/mipsecoff.em: Likewise. * emultempl/mipself.em: Likewise. * emultempl/mmix-elfnmmo.em: Likewise. * emultempl/mmixelf.em: Likewise. * emultempl/mmo.em: Likewise. * emultempl/needrelax.em: Likewise. * emultempl/netbsd.em: Likewise. * emultempl/pe.em: Likewise. * emultempl/pep.em: Likewise. * emultempl/ppc32elf.em: Likewise. * emultempl/ppc64elf.em: Likewise. * emultempl/scoreelf.em: Likewise. * emultempl/sh64elf.em: Likewise. * emultempl/spuelf.em: Likewise. * emultempl/sunos.em: Likewise. * emultempl/ticoff.em: Likewise. * emultempl/vanilla.em: Likewise. * emultempl/vxworks.em: Likewise. * emultempl/xtensaelf.em: Likewise. * emultempl/z80.em: Likewise.
Diffstat (limited to 'ld/emultempl/avrelf.em')
-rw-r--r--ld/emultempl/avrelf.em22
1 files changed, 11 insertions, 11 deletions
diff --git a/ld/emultempl/avrelf.em b/ld/emultempl/avrelf.em
index 9f24f18344a..2f17ec94129 100644
--- a/ld/emultempl/avrelf.em
+++ b/ld/emultempl/avrelf.em
@@ -25,12 +25,12 @@
# of devices where one needs to address the issue that it is not possible
# to reach the whole program memory by using 16 bit pointers.
-cat >>e${EMULATION_NAME}.c <<EOF
+fragment <<EOF
#include "elf32-avr.h"
#include "ldctor.h"
-/* The fake file and it's corresponding section meant to hold
+/* The fake file and it's corresponding section meant to hold
the linker stubs if needed. */
static lang_input_statement_type *stub_file;
@@ -126,14 +126,14 @@ avr_elf_create_output_section_statements (void)
".trampolines");
if (avr_stub_section == NULL)
goto err_ret;
-
+
flags = (SEC_ALLOC | SEC_LOAD | SEC_READONLY | SEC_CODE
| SEC_HAS_CONTENTS | SEC_RELOC | SEC_IN_MEMORY | SEC_KEEP);
if (!bfd_set_section_flags (stub_file->the_bfd, avr_stub_section, flags))
goto err_ret;
avr_stub_section->alignment_power = 1;
-
+
ldlang_add_file (stub_file);
return;
@@ -147,7 +147,7 @@ avr_elf_create_output_section_statements (void)
static void
avr_elf_finish (void)
-{
+{
if (!avr_no_stubs)
{
/* Now build the linker stubs. */
@@ -185,15 +185,15 @@ PARSE_AND_LIST_PROLOGUE='
'
PARSE_AND_LIST_LONGOPTS='
- { "no-call-ret-replacement", no_argument,
+ { "no-call-ret-replacement", no_argument,
NULL, OPTION_NO_CALL_RET_REPLACEMENT},
- { "pmem-wrap-around", required_argument,
+ { "pmem-wrap-around", required_argument,
NULL, OPTION_PMEM_WRAP_AROUND},
- { "no-stubs", no_argument,
+ { "no-stubs", no_argument,
NULL, OPTION_NO_STUBS},
- { "debug-stubs", no_argument,
+ { "debug-stubs", no_argument,
NULL, OPTION_DEBUG_STUBS},
- { "debug-relax", no_argument,
+ { "debug-relax", no_argument,
NULL, OPTION_DEBUG_RELAX},
'
@@ -227,7 +227,7 @@ PARSE_AND_LIST_OPTIONS='
PARSE_AND_LIST_ARGS_CASES='
case OPTION_PMEM_WRAP_AROUND:
- {
+ {
/* This variable is defined in the bfd library. */
if ((!strcmp (optarg,"32k")) || (!strcmp (optarg,"32K")))
avr_pc_wrap_around = 32768;