[go: up one dir, main page]

Menu

[r2]: / trunk / apps / app.ld  Maximize  Restore  History

Download this file

28 lines (24 with data), 243 Bytes

/*
 *      Application linker script.
 *
 */

OUTPUT_FORMAT("elf32-i386")
TEXT_START = 0x100000;
ENTRY(main)
SECTIONS
{
	.text TEXT_START :
	{
		*(.text.*)
		*(.rodata.*)
	}

	.data :
	{
		*(.data*)
	}

	.bss :
	{
		*(.bss*)
		*(COMMON*)
	}
}