Zoi选项 — Insure抑制功能

 
Zoi 选项紧跟在insure命令的后面,作为及时添加到.psrc中的选项。即在编译时通过该选项即可对某些文件及时打开或关闭某些选项配置,如打开抑制,关闭抑制等等。
 
# Rules for building and/or running the Insight examples; most are simple.
# Some examples require unsupressing errors that are suppressed by default.
# Where applicable for compile-time messages, this is done with the
# -Zoi option. Runtime messages that are suppressed by default can be
# unsuppressed using the suppressions panel or a .psrc file.
 
.SUFFIXES: .c
.c.exe:
$(CC) $(CFLAGS) $<
.c.obj:
$(CC) $(CFLAGS) -c $<
-del $@
 
$(INSURE_OBJS): always_rebuild
always_rebuild:
 
badcast.obj: badcast.c
$(CC) $(CFLAGS) -c $*.c -Zoi"unsuppress BAD_FORMAT(compatible, sign)" -Zoi "suppressedgwarning off”
 
原文地址:https://www.cnblogs.com/kwang-cai/p/5249286.html