Hello, I have a beginner question. I'm trying to link in math libraries in order to use functions such as sqrt() or pow() but although those functions are declared in math.h the linker can resolve them even if I link against libm using the -lm option before the object list such as in
${CC} -mmcu=${MCU} -lm -Wl,-Map=main.map -o main.x ${OBJS} I tried to look into all .a files and I found that there is no sign of those functions so I tried to use __ieee754_sqrtf() since it appears to be there, but I still get an unresolved external. Any suggestion? Thanks in advance Marco