Ignore:
Timestamp:
Nov 21, 2000, 5:39:20 AM (25 years ago)
Author:
bird
Message:

Addjustments for Watcom.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/pdwin32.wat.rel

    r4642 r4656  
    1 # $Id: pdwin32.wat.rel,v 1.4 2000-11-20 04:58:15 bird Exp $
     1# $Id: pdwin32.wat.rel,v 1.5 2000-11-21 04:39:20 bird Exp $
    22# ODIN / win32os2 Project
    33#
     
    5050#
    5151# Watcom compiler flags:
    52 # w4            warning level 4
    53 # wcd=726       disable warning 726 (unreferened local variable or parameter)
    54 # e25           error limit
    55 # d2            generate symbolic debug information
    56 # od            no optimizations
    57 # bm            multithreaded environment
    58 # ez            generated OMF objects
    59 # mf            flat memory model
    60 # 5r            pentium register calling convention
    61 # br            use dll for runtime library functions
    62 # bt=os2        target os = OS/2
    63 # zq            operate quietly (display only errors)
    64 # fp5           optimize floating-point for pentium
    65 # fpi87         inline fpu instructions
    66 # hw            generate Watcom debug information
    67 CFLAGS           = -w4 -wcd=726 -e25 -od -bm -mf -s -5r -br -bt=os2 -zq -fp5 -fpi87
    68 CXXFLAGS         = -w4 -wcd=726 -e25 -od -bm -mf -s -5r -br -bt=os2 -zq -fp5 -fpi87
    69 CXXFLAGS_ODINCRT = -w4 -wcd=726 -e25 -od -bm -bd -s -mf -5r -bt=os2 -zq -fp5 -fpi87
     52# w4        warning level 4
     53# wcd=726   disable warning 726 (unreferened local variable or parameter)
     54# e25       error limit
     55# d2        generate symbolic debug information
     56# od        no optimizations
     57# bm        multithreaded environment
     58# ez        generated OMF objects
     59# mf        flat memory model
     60# 5r        pentium register calling convention
     61# br        use dll for runtime library functions
     62# bt=os2    target os = OS/2
     63# zq        operate quietly (display only errors)
     64# fp5       optimize floating-point for pentium
     65# fpi87     inline fpu instructions
     66# hw        generate Watcom debug information
     67# xd        disable exception handling (default)
     68# xs        enable exception handling
     69CXXEXCEPTIONS    = -xs
     70!ifndef STATIC_CRT
     71DLLRTL = -br
     72!endif
     73CFLAGS           = -w4 -wcd=726 -e25 -od -bm -mf -5r -bt=os2 -zq -fp5 -fpi87 -s     $(DLLRTL)
     74CXXFLAGS         = -w4 -wcd=726 -e25 -od -bm -mf -5r -bt=os2 -zq -fp5 -fpi87 -s -xd $(DLLRTL)
     75CXXFLAGS_ODINCRT = -w4 -wcd=726 -e25 -od -bm -mf -5r -bt=os2 -zq -fp5 -fpi87 -s -xd
    7076CFLAGS_WIN32APP  = -w4 -wcd=726 -e25 -od -bm -mf -5r -bt=os2 -zq -fp5 -fpi87
    7177CXXFLAGS_WIN32APP= -w4 -wcd=726 -e25 -od -bm -mf -5r -bt=os2 -zq -fp5 -fpi87
     
    7682
    7783!ifdef EXETARGET
     84!ifdef VIO
     85CFLAGS           += -bc
     86CXXFLAGS         += -bc
     87!else
    7888CFLAGS           += -bg
    7989CXXFLAGS         += -bg
     90!endif
    8091!else
    8192CFLAGS           += -bd
Note: See TracChangeset for help on using the changeset viewer.