Hi,
This linking error indicates the data sections do not fit into internal SRAM memory.
If this happen after you add a library to the project - it may indicate that the linker does not dead-strip the unused library functions.
Could you check if the linker option is enabled:
--gc-sections

enable the option and rebuild the project.
If it does not help, please check your code/data may not fit into the memory.
Hope it helps.
Stan