[Bug lto/49703] New: -flto makes stack executable by default
marcus at jet dot franken.de
gcc-bugzilla@gcc.gnu.org
Mon Jul 11 11:59:00 GMT 2011
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49703
Summary: -flto makes stack executable by default
Product: gcc
Version: 4.6.1
Status: UNCONFIRMED
Severity: critical
Priority: P3
Component: lto
AssignedTo: unassigned@gcc.gnu.org
ReportedBy: marcus@jet.franken.de
$ cat xx.c
#include <stdio.h>
int main(int argc, char **argv) {
printf("Hallo\n");
return 0;
}
$ gcc -O2 -o xx xx.c
$ readelf -a xx|grep STACK
GNU_STACK 0x000000 0x00000000 0x00000000 0x00000 0x00000 RW 0x4
$ gcc -flto -O2 -o xx xx.c
$ readelf -a xx|grep STACK
GNU_STACK 0x000000 0x00000000 0x00000000 0x00000 0x00000 RWE 0x4
-flto should not create executable stacks.
More information about the Gcc-bugs
mailing list