make/windows/makefiles/compile.make

Print this page

        

@@ -50,11 +50,11 @@
 # 6655385: For VS2003/2005 we now specify /Oy- (disable frame pointer
 # omission.)  This has little to no effect on performance while vastly
 # improving the quality of crash log stack traces involving jvm.dll.
 
 # These are always used in all compiles
-CXX_FLAGS=/nologo /W3 /WX
+CXX_FLAGS=$(EXTRA_CFLAGS) /nologo /W3 /WX
 
 # Let's add debug information when Full Debug Symbols is enabled
 !if "$(ENABLE_FULL_DEBUG_SYMBOLS)" == "1"
 CXX_FLAGS=$(CXX_FLAGS) /Zi
 !endif