Hello I have a linker script in which i found this code "__exidx_start = .;
" which sets label value to the value of location counter ".
". This label isn't used anywhere within the same linker script.
There is a similar label defined couple of lines below the first one and it is defined the same way "__exidx_end = .;
".
These two labels are boundries of .text
and .rodata
sections, but i don't know why would anyone define those two if they aren't used in the linker script?