cmd/ld: set ELF header flags for our Linux/ARM binary

To make it more compliant.
This won't affect the behavior of running on OABI-only kernels.

R=golang-dev, iant
CC=golang-dev
https://golang.org/cl/6475044
This commit is contained in:
Shenghou Ma 2012-08-23 14:33:41 +08:00
parent 251199c430
commit 1cf27acfed

View file

@ -52,6 +52,9 @@ elfinit(void)
break;
// 32-bit architectures
case '5':
hdr.flags = 0x5000002; // has entry point, Version5 EABI
// fallthrough
default:
hdr.phoff = ELF32HDRSIZE; /* Must be be ELF32HDRSIZE: first PHdr must follow ELF header */
hdr.shoff = ELF32HDRSIZE; /* Will move as we add PHeaders */