Previously developed the S32K146 chip, modifying the stack size in the linked file is also relatively simple,
S32K146_128_flash.ld:
HEAP_SIZE = DEFINED(__heap_size__) ? __heap_size__ : 0x00000400;
STACK_SIZE = DEFINED(__stack_size__) ? __stack_size__ : 0x00000400;
linker_flash_s32k344.ld:
HEAP_SIZE = DEFINED(__heap_size__) ? __heap_size__ : 0x00002000;
__STANDBY_RAM_LIMIT_END = 0x20419000; /* 100Kbyte for standby ram */
What should I do if I want to change the stack size in the linker_flash_s32k344.ld file?