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.
我在为 MPC5643L powerpc 板编译 C 代码时遇到问题。该代码具有long long x变量,gcc 将其组装为浮点数。因为我的寄存器是 64 位的,所以如何使用 gcc 对其进行编译。
long long x
您将传递-msoft-float到编译命令行。这将强制它不使用任何浮点寄存器,而是将目标视为只有32 个 32 位 GPR。
-msoft-float