Honestly, I had to poke around the ARM developers forum for that info when I ran into compiling a package that required std::threads, but I haven't found a definitive list. So far, in my experience,...
Type: Posts; User: brtaylor
Honestly, I had to poke around the ARM developers forum for that info when I ran into compiling a package that required std::threads, but I haven't found a definitive list. So far, in my experience,...
The GCC compiler for ARM Cortex M does not include support for std::thread. Including TeensyThreads might be a good alternative for you:
https://github.com/ftrias/TeensyThreads
You can have a look at a Makefile I use here:
https://github.com/bolderflight/RAPTRS/blob/master/software/Makefile
It's cross building more than just the Teensy software, but if you follow the...