diff options
author | Roland McGrath <roland@gnu.org> | 2007-07-19 19:56:10 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2007-07-19 19:56:10 +0000 |
commit | 92b93329b58c744ea269b50f6278ed99416941a9 (patch) | |
tree | 415eaf8c24ce53fd9cdab8ed6af4f5cd6fdd1ede /ld/emultempl/sunos.em | |
parent | 6b33789f617a22563c87282673aa23d9b8b4a3ca (diff) | |
download | gdb-92b93329b58c744ea269b50f6278ed99416941a9.zip gdb-92b93329b58c744ea269b50f6278ed99416941a9.tar.gz gdb-92b93329b58c744ea269b50f6278ed99416941a9.tar.bz2 |
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/sunos.em')
-rw-r--r-- | ld/emultempl/sunos.em | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/ld/emultempl/sunos.em b/ld/emultempl/sunos.em index 2aa2352..00d949f 100644 --- a/ld/emultempl/sunos.em +++ b/ld/emultempl/sunos.em @@ -5,7 +5,7 @@ if [ -z "$MACHINE" ]; then else OUTPUT_ARCH=${ARCH}:${MACHINE} fi -cat >e${EMULATION_NAME}.c <<EOF +fragment <<EOF /* This file is is generated by a shell script. DO NOT EDIT! */ /* SunOS emulation code for ${EMULATION_NAME} @@ -101,7 +101,7 @@ EOF if [ "x${host}" = "x${target}" ] ; then case " ${EMULATION_LIBPATH} " in *" ${EMULATION_NAME} "*) -cat >>e${EMULATION_NAME}.c <<EOF +fragment <<EOF const char *env; env = (const char *) getenv ("LD_LIBRARY_PATH"); @@ -128,7 +128,7 @@ EOF ;; esac fi -cat >>e${EMULATION_NAME}.c <<EOF +fragment <<EOF } /* Despite the name, we use this routine to search for dynamic @@ -464,7 +464,7 @@ EOF if [ "x${host}" = "x${target}" ] ; then case " ${EMULATION_LIBPATH} " in *" ${EMULATION_NAME} "*) -cat >>e${EMULATION_NAME}.c <<EOF +fragment <<EOF { const char *lib_path; @@ -476,7 +476,7 @@ EOF ;; esac fi -cat >>e${EMULATION_NAME}.c <<EOF +fragment <<EOF if (command_line.rpath != NULL) { for (search = search_head; search != NULL; search = search->next) @@ -961,7 +961,7 @@ then # sed commands to quote an ld script as a C string. sc="-f stringify.sed" -cat >>e${EMULATION_NAME}.c <<EOF +fragment <<EOF { *isfile = 0; @@ -982,7 +982,7 @@ echo '; }' >> e${EMULATION_NAME} else # Scripts read from the filesystem. -cat >>e${EMULATION_NAME}.c <<EOF +fragment <<EOF { *isfile = 1; @@ -1001,7 +1001,7 @@ EOF fi -cat >>e${EMULATION_NAME}.c <<EOF +fragment <<EOF struct ld_emulation_xfer_struct ld_${EMULATION_NAME}_emulation = { |