diff options
author | Alan Modra <amodra@gmail.com> | 2008-10-09 13:42:30 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2008-10-09 13:42:30 +0000 |
commit | c67d8df719f66676c4bf7d78fd6d1471e85dfb84 (patch) | |
tree | ceed8ba2e82378da5f2682a0061c8459a97c1441 /binutils | |
parent | d078078ddb99e3b2c63f093cb1d898cd7f36960a (diff) | |
download | gdb-c67d8df719f66676c4bf7d78fd6d1471e85dfb84.zip gdb-c67d8df719f66676c4bf7d78fd6d1471e85dfb84.tar.gz gdb-c67d8df719f66676c4bf7d78fd6d1471e85dfb84.tar.bz2 |
* embedspu.sh: Pass -Wa,-noexecstack to $CC.
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 4 | ||||
-rw-r--r-- | binutils/embedspu.sh | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index e31605d..bc97118 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,7 @@ +2008-10-10 Alan Modra <amodra@bigpond.net.au> + + * embedspu.sh: Pass -Wa,-noexecstack to $CC. + 2008-10-09 Kai Tietz <kai.tietz@onevision.com> * dlltool.c (PAGE_SIZE): Make sure it has bfd_vma type. diff --git a/binutils/embedspu.sh b/binutils/embedspu.sh index 5f9d20c..8b19e76 100644 --- a/binutils/embedspu.sh +++ b/binutils/embedspu.sh @@ -146,7 +146,7 @@ main () # 4. Write a struct spe_program_handle to .data. # 5. Write a table of _SPUEAR_ symbols. ${CC} ${FLAGS} -x assembler-with-cpp -nostartfiles -nostdlib \ - -Wa,-mbig -Wl,-r -Wl,-x -o ${OUTFILE} - <<EOF + -Wa,-mbig -Wa,-noexecstack -Wl,-r -Wl,-x -o ${OUTFILE} - <<EOF .section .data.spetoe,"aw",@progbits .p2align 7 __spetoe__: |