hotspot/make/windows/makefiles/compile.make
changeset 17295 ebf76b993941
parent 16447 234db5e2ae5e
child 18936 5e18fd279f7d
equal deleted inserted replaced
17294:a1a03f4c1cab 17295:ebf76b993941
    50 # 6655385: For VS2003/2005 we now specify /Oy- (disable frame pointer
    50 # 6655385: For VS2003/2005 we now specify /Oy- (disable frame pointer
    51 # omission.)  This has little to no effect on performance while vastly
    51 # omission.)  This has little to no effect on performance while vastly
    52 # improving the quality of crash log stack traces involving jvm.dll.
    52 # improving the quality of crash log stack traces involving jvm.dll.
    53 
    53 
    54 # These are always used in all compiles
    54 # These are always used in all compiles
    55 CXX_FLAGS=/nologo /W3 /WX
    55 CXX_FLAGS=$(EXTRA_CFLAGS) /nologo /W3 /WX
    56 
    56 
    57 # Let's add debug information when Full Debug Symbols is enabled
    57 # Let's add debug information when Full Debug Symbols is enabled
    58 !if "$(ENABLE_FULL_DEBUG_SYMBOLS)" == "1"
    58 !if "$(ENABLE_FULL_DEBUG_SYMBOLS)" == "1"
    59 CXX_FLAGS=$(CXX_FLAGS) /Zi
    59 CXX_FLAGS=$(CXX_FLAGS) /Zi
    60 !endif
    60 !endif