mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-17 09:43:59 +08:00
[IA64] vDSO vs --build-id
When gcc uses --build-id by default, the gate.lds.S linker script runs afoul of the new note section and produces a bad DSO image. This fixes it. Signed-off-by: Roland McGrath <roland@redhat.com> Signed-off-by: Tony Luck <tony.luck@intel.com>
This commit is contained in:
parent
d650c37b2f
commit
172c510684
@ -20,6 +20,8 @@ SECTIONS
|
||||
.gnu.version_d : { *(.gnu.version_d) }
|
||||
.gnu.version_r : { *(.gnu.version_r) }
|
||||
|
||||
.note : { *(.note*) } :readable :note
|
||||
|
||||
.dynamic : { *(.dynamic) } :readable :dynamic
|
||||
|
||||
/*
|
||||
@ -83,6 +85,7 @@ PHDRS
|
||||
epc PT_LOAD FILEHDR PHDRS FLAGS(1); /* PF_X */
|
||||
#endif
|
||||
dynamic PT_DYNAMIC FLAGS(4); /* PF_R */
|
||||
note PT_NOTE FLAGS(4); /* PF_R */
|
||||
unwind PT_IA_64_UNWIND;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user