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 を使いたくないのですが、強制されているようです。
お願い助けて。