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.
我正在编译一个不支持 NEON 的 ARM 代码,但我遇到了一个异常,因为其中一个 C 库“printf”正在尝试访问 NEON 寄存器 Q0“str q0,[x29,#112 ]”。
为了防止编译器调用NEON寄存器,我使用了很多选项,但似乎问题并不明显。我用过:-march=armv8-a+nofp,-mgeneral-regs-only,-mcpu=cortex-a53+nofp...
关于如何处理的任何想法?