My understanding is that when I use the S32DS IDE tool for coding, I should not modify the bss segment of the ld part or the memory allocation of other parts.After all, the amount of my code was not overly large, so I initially thought it was a problem with the configuration of my ide environment. I searched on the official website but couldn't find a corresponding solution.
I only added the header file and source file of the following function declaration and implementation, and then compiled them together with main.c, which would result in an error.
void myprintf(void)
{
printf("test");
}