mirror of https://github.com/ipxe/ipxe.git
[build] Discard junk sections created by newer gcc versions
parent
54fbd11221
commit
c661945e82
|
@ -149,7 +149,13 @@ SECTIONS {
|
||||||
|
|
||||||
/DISCARD/ : {
|
/DISCARD/ : {
|
||||||
*(.comment)
|
*(.comment)
|
||||||
|
*(.comment.*)
|
||||||
*(.note)
|
*(.note)
|
||||||
|
*(.note.*)
|
||||||
|
*(.eh_frame)
|
||||||
|
*(.eh_frame.*)
|
||||||
|
*(.rel)
|
||||||
|
*(.rel.*)
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -145,7 +145,13 @@ SECTIONS {
|
||||||
|
|
||||||
/DISCARD/ : {
|
/DISCARD/ : {
|
||||||
*(.comment)
|
*(.comment)
|
||||||
|
*(.comment.*)
|
||||||
*(.note)
|
*(.note)
|
||||||
|
*(.note.*)
|
||||||
|
*(.eh_frame)
|
||||||
|
*(.eh_frame.*)
|
||||||
|
*(.rel)
|
||||||
|
*(.rel.*)
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in New Issue