1
0
mirror of https://github.com/golang/go synced 2024-11-22 21:00:04 -07:00

cmd/ld: emit .tbss section when doing dynamic internal linking

Fixes #5200.

R=iant, dave
CC=golang-dev
https://golang.org/cl/9383043
This commit is contained in:
Shenghou Ma 2013-05-18 02:41:49 +08:00
parent fad27ec5d4
commit a848475324

View File

@ -887,7 +887,12 @@ doelf(void)
addstring(shstrtab, ".data");
addstring(shstrtab, ".bss");
addstring(shstrtab, ".noptrbss");
if(linkmode == LinkExternal && HEADTYPE != Hopenbsd)
// generate .tbss section (except for OpenBSD where it's not supported)
// for dynamic internal linker or external linking, so that various
// binutils could correctly calculate PT_TLS size.
// see http://golang.org/issue/5200.
if(HEADTYPE != Hopenbsd)
if(!debug['d'] || linkmode == LinkExternal)
addstring(shstrtab, ".tbss");
if(HEADTYPE == Hnetbsd)
addstring(shstrtab, ".note.netbsd.ident");
@ -1412,6 +1417,16 @@ elfobj:
sh->flags = 0;
}
// generate .tbss section for dynamic internal linking (except for OpenBSD)
// external linking generates .tbss in data.c
if(linkmode == LinkInternal && !debug['d'] && HEADTYPE != Hopenbsd) {
sh = elfshname(".tbss");
sh->type = SHT_NOBITS;
sh->addralign = PtrSize;
sh->size = -tlsoffset;
sh->flags = SHF_ALLOC | SHF_TLS | SHF_WRITE;
}
if(!debug['s']) {
sh = elfshname(".symtab");
sh->type = SHT_SYMTAB;