Hello Sorin,
Which particular example are you referring to? Have you modified the example?
I've tested FIT one and I'm able to build it without any link errors.
__IVPR_VALUE is the symbol defined in the linker command file (5500_flash.lcf, 5500_ram.lcf)
it's defined as the address of memory dedicated to the interrupt handlers:
__IVPR_VALUE = ADDR(interrupts_flash);
I'd suggest you check whether the appropriate .lcf file includes the symbol definition + main.c module should include:
extern uint32_t __IVPR_VALUE;
Stanish