Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
代码:
double a = 1.1; double b = 2.2; void test(void) { double c = a + b; // <-- This line generates the __aeabi_dadd function. }
当我尝试编译时,我得到未定义的引用__aeabi_dadd。
__aeabi_dadd
我不想使用 newlib,但看起来我是被迫的。
请帮帮我。