make/windows/makefiles/compile.make

changeset 5046
0380df7c3cd0
parent 4821
6b748c9e1845
child 5417
33c52908bcdb
equal deleted inserted replaced
5045:c456f4510385 5046:0380df7c3cd0
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

mercurial