summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohann <johannkoenig@google.com>2011-07-21 12:20:00 -0700
committerCode Review <code-review@webmproject.org>2011-07-21 12:20:00 -0700
commitddcdbfd71e1562bd6dfb8694ec9e3dd397dc88dc (patch)
tree2fd6f876b0994a1f12f0c84fc9b7f47edab1498a
parent2bdda84e375bdc1edfe9aad514238928869dd93e (diff)
parent0453aca5af7e6d36307f9487e2126076bdbf9bb1 (diff)
downloadlibvpx-ddcdbfd71e1562bd6dfb8694ec9e3dd397dc88dc.tar
libvpx-ddcdbfd71e1562bd6dfb8694ec9e3dd397dc88dc.tar.gz
libvpx-ddcdbfd71e1562bd6dfb8694ec9e3dd397dc88dc.tar.bz2
libvpx-ddcdbfd71e1562bd6dfb8694ec9e3dd397dc88dc.zip
Merge "Mark ARM asm objects as allowing a non-executable stack."
-rwxr-xr-xbuild/make/ads2gas.pl3
1 files changed, 3 insertions, 0 deletions
diff --git a/build/make/ads2gas.pl b/build/make/ads2gas.pl
index be4658253..362fcf4e8 100755
--- a/build/make/ads2gas.pl
+++ b/build/make/ads2gas.pl
@@ -154,3 +154,6 @@ while (<STDIN>)
next if /^\s*END\s*$/;
print;
}
+
+# Mark that this object doesn't need an executable stack.
+printf ("\t.section\t.note.GNU-stack,\"\",\%\%progbits\n");