Hi, I am creating a static library in MCUXpresso IDE. I am using redlib for importing `stdlib.h` in my code. It successfully builds a static library. However, some of the standard library functions such as "malloc", "exit" are undefined in the static library. I verified that using `nm` command.
The problem is that I plan to use this static library in rust using ffi. And when I try to load the static library in my rust code I get error `rust-lld: error: undefined symbol: malloc`. How can I include these definitions in my static library?