Open niansa opened 3 years ago
I've not heard someone tried to build for bare metal using CMake. Is there any issue if no specific option is passed?
Are you using Musl?
Nope, just some super-minimal C and C++ standard library without any posix stuff. Just malloc and free for memory management as well as some mmap/munmap-like functions.
It would be interesting to know the results of your experiments. Patches are welcomed too!
Just malloc and free for memory management as well as some mmap/munmap-like functions.
The minimum you need is malloc (i.e. a way to get memory from the underlying subsystem).
A porting guide might be helpful for you - porting.md
Hey, which cmake options do I need to pass to build for bare metal?
(So only C standard lib functions are used but nothing else at all)