hi all,
i need some help about how to include linker script ... into the file .... and i need to find the size of the file in run time ..
thanks in advance
help needed in linker script
Re:help needed in linker script
what do you mean "how" to include the linker script? it has to be given as an arg to the linker. If you are using GCC the use the
Check this site for help on DJGPP's ld (Windows port of GCC)
Code: Select all
ld -T linkerscript.ld <all the other options etc>
Only Human