what is the difference between statement at line-4 and 5??? And what are the problems comes when defining symbol with leading undersore??
code:
SECTIONS
{
.text :
*(.text)
_etext = . ; // line-4
PROVIDE(etext= .); // line-5
}