When I use: ` uint64_t nr = 123;` `printf("%llu", nr);` without the newlib-nano, it shows correctly `123` but when I enable newlib-nano, it shows `lu` Am I missing a linker/compiler option or is this not supported in newlib-nano?
When I use:
uint64_t nr = 123;printf("%llu", nr);without the newlib-nano, it shows correctly
123but when I enable newlib-nano, it shows
luAm I missing a linker/compiler option or is this not supported in newlib-nano?