Commit d650c37b authored by Roland McGrath's avatar Roland McGrath Committed by Tony Luck
Browse files

[IA64] check-segrel.lds vs --build-id



Some versions of ld with --build-id support will crash when using the flag
with a linker script that discards notes.  This bites ia64's check-segrel.lds.
The bug is easy to avoid.

Signed-off-by: default avatarRoland McGrath <roland@redhat.com>
Signed-off-by: default avatarTony Luck <tony.luck@intel.com>
parent 1775fe85
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
SECTIONS {
	. = SIZEOF_HEADERS;
	.rodata : { *(.rodata) } :ro
	.note : { *(.note*) }
	. = 0xa0000;
	.data : { *(.data) } :dat
	/DISCARD/ : { *(*) }