Fix extraneous warning about executable stack.
authorCary Coutant <ccoutant@google.com>
Mon, 1 Dec 2014 21:21:49 +0000 (13:21 -0800)
committerCary Coutant <ccoutant@google.com>
Mon, 1 Dec 2014 21:21:49 +0000 (13:21 -0800)
commitd8e603148f3cc4a953409f4a5afff9e4ea898830
tree929f28d46f0d4668babda8c7f123437e152303ff
parentef77750ef779ac887423f84bcc11a8de4dd0fe79
Fix extraneous warning about executable stack.

PR gold/17578 notes that gold will print a warning about an executable stack
when the -z execstack option is given, even when there is no --warn_execstack
option. The warning is completely useless and unexpected, since the user
explicitly requested an executable stack, and did not even ask for warnings.

This patch fixes that, and adds an extra warning when --warn_execstack
and -z noexecstack are both given and an input file requires an executable
stack.

gold/
PR gold/17578
* layout.cc (Layout::layout_gnu_stack): Don't warn when -z execstack
is given.
(Layout::create_executable_stack_info): Warn when -z noexecstack is
given but some inputs require executable stack.
gold/ChangeLog
gold/layout.cc