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.
我正在使用 IAR EWARM 5.4 ,我想知道是否有一个指令可以在模拟器模式下显示编译器。例如,我希望我的一部分代码仅在模拟器模式下编译,但在目标模式下将被忽略。
谢谢,
编译器不知道最终结果是在模拟器上执行还是在目标硬件上执行。
MY_SIMULATOR但是,您始终可以在使用模拟器时定义自己的预处理器符号,例如。然后,您的代码可以使用#ifdef MY_SIMULATOR.
MY_SIMULATOR
#ifdef MY_SIMULATOR
更新:如果您想检查 Debug 和 Release 模式之间的区别,可以检查符号NDEBUG。它是在发布模式中定义的。
NDEBUG