Changeset 1023


Ignore:
Timestamp:
May 28, 2008, 4:14:53 AM (17 years ago)
Author:
Steven Levine
Message:

Add WARNALL and FORTIFY support

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/makefile_pre.mk

    r983 r1023  
    1212# 03 Jan 08 SHL Switch to wrc.exe default; support USE_RC from environment
    1313# 23 Jan 08 JBS Add support for building SYM files (Ticket 226)
     14# 27 May 08 SHL Add WARNALL and FORTIFY support
    1415
    1516CC = wcc386
     
    4041!endif
    4142
     43!ifdef %WARNALL                 # if defined in environment
     44WARNALL = $(%WARNALL)           # use value from environment
     45!endif
     46
     47!ifdef %FORTIFY                 # if defined in environment
     48FORTIFY = $(%FORTIFY)           # use value from environment
     49!endif
     50
    4251SYMS = $(BASE).sym              #set a target for building SYM files
    4352
     
    5766# -sg           generate calls to grow the stack
    5867# -st           touch stack through SS first
    59 # -wcd14        no reference to symbol
    60 # -wcd726       no reference to formal parameter
    6168# -we           treat warnings as errors
    6269# -wx           max warnings
     
    6673# -zq           quiet
    6774
     75# -wx excludes these
     76# See GenCOptions() in openwatcom\bld\cc\c\coptions.c
     77# -wce130       possible loss of precision
     78# -wcd=303      no reference to formal parameter
     79# -wcd=307      obsolete non-prototype declarator
     80# -wcd=308      unprototyped function called
     81# -wcd=309      unprototyped function called indirectly
     82
    6883# We always compile with debug info to avoid needed a full rebuild just to debug
    69 CFLAGS = -bt=os2 -mf -bm -d2 -olirs   -s -j -we -wx -zfp -zgp -zp4 -zq -hd
     84CFLAGS = -bt=os2 -mf -bm -d2 -olirs   -s -j -wx -zfp -zgp -zp4 -zq -hd
     85
     86!ifdef WARNALL
     87CFLAGS += -wce=118 -wce=130 -wce=303 -wce=307 -wce=308 -wce=309
     88!else
     89CFLAGS += -we
     90!endif
     91
     92!ifdef FORTIFY
     93CFLAGS += -dFORTIFY
     94!endif
    7095
    7196LFLAGS = sys os2v2_pm op quiet op verbose op cache op caseexact op map
Note: See TracChangeset for help on using the changeset viewer.