open-watcom / open-watcom-v2

Open Watcom V2.0 - Source code repository, Wiki, Latest Binary build, Archived builds including all installers for download.
Other
989 stars 162 forks source link

Possibility to suppress a wlink warning? #1255

Closed Baron-von-Riedesel closed 8 months ago

Baron-von-Riedesel commented 8 months ago

Hello,

is it somehow possible to suppress a wlink warning? I'd like to suppress warning 1080 ( "xxxx is a 32-bit module") when linking a "format DOS" binary. Since my DOS binary consists almost 100% of 32-bit modules (including modules from clib3s), I get some dozens of those warnings during the link step.

The hack to use the "raw" format instead of "dos" is not feasible in this case, since I need at least one DGROUP segment fixup

The resulting binary is fine, btw.

jmalak commented 8 months ago

Yes, it is possible by directive DISABLE message_num

Baron-von-Riedesel commented 8 months ago

Yes, it works! Thanks!