[link] elf, gcc garbage

This commit is contained in:
Kevin Lange 2011-01-17 17:04:12 -06:00
parent a2133cebd7
commit c60d48bea4
2 changed files with 7 additions and 1 deletions

Binary file not shown.

View File

@ -1,4 +1,4 @@
OUTPUT_FORMAT("binary")
OUTPUT_FORMAT(elf32-i386)
ENTRY(start)
phys = 0x00100000;
SECTIONS
@ -22,4 +22,10 @@ SECTIONS
. = ALIGN(4096);
}
end = .;
/DISCARD/ :
{
*(.comment)
*(.eh_frame)
*(.note.gnu.build-id)
}
}