Code:
double a = 1.1;
double b = 2.2;
void test(void)
{
double c = a + b; // <-- This line generates the __aeabi_dadd function.
}
When I try to compile, I get undefined reference to __aeabi_dadd
.
I don't want to use newlib, but it looks like I am forced to.
Help me please.