其他分享
首页 > 其他分享> > Keil MDK 禁用指定的编译警告

Keil MDK 禁用指定的编译警告

作者:互联网

在Misc Controls 配置 -Wno-<警告名称>,例如:

 warning: padding size of 'CRC_HandleTypeDef' with 2 bytes to alignment boundary [-Wpadded]。

则禁用参数为 -Wno-padded
官方文档:https://www.keil.com/support/man/docs/uv4/uv4_dg_armclang_cmp.htm

如果有警告代码则参考 csdn Keil5忽略特定的警告
即:--diag_suppress=<警告代码> 如:--diag_suppress=61

标签:MDK,Keil,--,diag,uv4,Wno,禁用,警告,suppress
来源: https://www.cnblogs.com/shishirong/p/15177200.html