标签: c gcc arm ld eabi
代码:
byte
当我尝试编译时,我得到double a = 1.1; double b = 2.2; void test(void) { double c = a + b; // <-- This line generates the __aeabi_dadd function. } 的未定义引用。
double a = 1.1; double b = 2.2; void test(void) { double c = a + b; // <-- This line generates the __aeabi_dadd function. }
我不想使用newlib,但看起来我不得不这样做。
请帮帮我。