Using time.h asserts
Hello,
I am currently trying to convert my STM32CubeIDE (based on makefile) project to a STM32 VScode extension project based on CMake.
Everything seemed to work smoothly until I was met with an issue calling the 'localtime' function from the standard 'time.h' class.
This function has worked well so far in my CubeIDE project and I am using this to convert a uint32_t epoch to a tm struct.
In my CMake project this fails by calling '_exit' and getting stuck there.
The callstack is as follows:

I am not sure what is the issue, is the standard library not implemented in the newlib of the CLT package?
I tried looking at the 'gcc-arm-none-eabi.cmake' script and compare it to the makefile but none of the changes I tried making made any difference.
Thanks.
