Print this page
10366 ld(1) should support GNU-style linker sets
10367 ld(1) tests should be a real test suite
10368 want an ld(1) regression test for i386 LD tls transition (10267)
*** 1766,1775 ****
--- 1766,1788 ----
/* LINTED */
sectndx = elf_ndxscn(ofl->
ofl_osgot->os_scn);
sdp->sd_flags &= ~FLG_SY_SPECSEC;
break;
+ case SDAUX_ID_SECBOUND_START:
+ sym->st_value = sap->sa_boundsec->
+ os_shdr->sh_addr;
+ sectndx = elf_ndxscn(sap->sa_boundsec->os_scn);
+ sdp->sd_flags &= ~FLG_SY_SPECSEC;
+ break;
+ case SDAUX_ID_SECBOUND_STOP:
+ sym->st_value = sap->sa_boundsec->
+ os_shdr->sh_addr +
+ sap->sa_boundsec->os_shdr->sh_size;
+ sectndx = elf_ndxscn(sap->sa_boundsec->os_scn);
+ sdp->sd_flags &= ~FLG_SY_SPECSEC;
+ break;
default:
/* NOTHING */
;
}
}