Hello!
I’m working on a project with a Teensy 3.2, but I need support for sprintf and float numbers. I therefore need to add the linker flags -larm_cortexM4l_math -lm -u _printf_float
. As far as documentation goes, linker flags are added to platformio.ini with the building option tag build_flag
.
For the first 2, no issue adding them, but -u _print_float
has a space which breaks compilation and I don’t know the proper syntax to have it parse correctly.
Thanks a lot in advance!