Ignore:
Timestamp:
Aug 7, 2012, 10:26:48 PM (13 years ago)
Author:
bird
Message:

VCC100*: Dropped the explicit setting of -Od in debug C and CXX flags as the compiler makes a lot of noise if some optimziation is enabled later on the command line. Also sketeched a little on a dbgopt build type.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/kBuild/tools/VCC100AMD64.kmk

    r2622 r2625  
    9595TOOL_VCC100AMD64_COBJSUFF         ?= .obj
    9696TOOL_VCC100AMD64_CFLAGS           ?= -TC -nologo
    97 TOOL_VCC100AMD64_CFLAGS.debug     ?= -Od -Zi
     97TOOL_VCC100AMD64_CFLAGS.debug     ?= -Zi
     98TOOL_VCC100AMD64_CFLAGS.dbgopt    ?= -O2 -Zi
    9899TOOL_VCC100AMD64_CFLAGS.release   ?= -O2
    99100TOOL_VCC100AMD64_CFLAGS.profile   ?= -O2
     
    103104TOOL_VCC100AMD64_CXXOBJSUFF       ?= .obj
    104105TOOL_VCC100AMD64_CXXFLAGS         ?= -TP -nologo
    105 TOOL_VCC100AMD64_CXXFLAGS.debug   ?= -Od -Zi
     106TOOL_VCC100AMD64_CXXFLAGS.debug   ?= -Zi
     107TOOL_VCC100AMD64_CXXFLAGS.dbgopt  ?= -O2 -Zi
    106108TOOL_VCC100AMD64_CXXFLAGS.release ?= -O2
    107109TOOL_VCC100AMD64_CXXFLAGS.profile ?= -O2
     
    119121TOOL_VCC100AMD64_LDFLAGS          ?= -nologo -machine:amd64
    120122TOOL_VCC100AMD64_LDFLAGS.debug    ?= -debug
     123TOOL_VCC100AMD64_LDFLAGS.dbgopt   ?= -debug
     124TOOL_VCC100AMD64_LDFLAGS.profile  ?= -debug
    121125TOOL_VCC100AMD64_LDFLAGS.release  ?=
    122126
Note: See TracChangeset for help on using the changeset viewer.