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/VCC100.kmk

    r2622 r2625  
    110110TOOL_VCC100_COBJSUFF         ?= .obj
    111111TOOL_VCC100_CFLAGS           ?= -TC -nologo
    112 TOOL_VCC100_CFLAGS.debug     ?= -Od -Zi
     112TOOL_VCC100_CFLAGS.debug     ?= -Zi
     113TOOL_VCC100_CFLAGS.dbgopt    ?= -O2 -Zi
    113114TOOL_VCC100_CFLAGS.release   ?= -O2
    114115TOOL_VCC100_CFLAGS.profile   ?= -O2
     
    118119TOOL_VCC100_CXXOBJSUFF       ?= .obj
    119120TOOL_VCC100_CXXFLAGS         ?= -TP -nologo
    120 TOOL_VCC100_CXXFLAGS.debug   ?= -Od -Zi
     121TOOL_VCC100_CXXFLAGS.debug   ?= -Zi
     122TOOL_VCC100_CXXFLAGS.dbgopt  ?= -O2 -Zi
    121123TOOL_VCC100_CXXFLAGS.release ?= -O2
    122124TOOL_VCC100_CXXFLAGS.profile ?= -O2
     
    138140TOOL_VCC100_LDFLAGS          ?= -nologo
    139141TOOL_VCC100_LDFLAGS.debug    ?= -debug
     142TOOL_VCC100_LDFLAGS.dbgopt   ?= -debug
     143TOOL_VCC100_LDFLAGS.profile  ?= -debug
    140144TOOL_VCC100_LDFLAGS.release  ?=
    141145TOOL_VCC100_LIBPATH.amd64    ?= $(PATH_TOOL_VCC100_LIB.amd64) $(PATH_TOOL_VCC100_ATLMFC_LIB.amd64)
Note: See TracChangeset for help on using the changeset viewer.