Hello:
Yes, in MCUX project, there are some standard C library, when they are linked, then they are allocated real address.
There is one special case to address this:
When one APP is split as two parts: stable parts and non-stable parts.
they are put into two section of flash address,non-stable part could be upgraded, but stable parts must keep same always for safty cause.
but C library function, for example memcpy API, maybe stay with non-stable parts, which maybe called by stable part.
So we need "stable" C library in specific address, then other two parts could refer it as stable reference address.