Use of PROVIDE keyword in linker script of ARM processor

498 Views Asked by At

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

} 
0

There are 0 best solutions below