- Timestamp:
- Dec 1, 2023 9:42:46 AM (15 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Config.kmk
r102369 r102415 5334 5334 TEMPLATE_VBoxRc_CXXFLAGS += -Gw 5335 5335 endif 5336 if "$(VBOX_VCC_TOOL_STEM)" >= "VCC140" 5337 TEMPLATE_VBoxRc_CXXFLAGS += -Zc:inline 5338 endif 5336 5339 ifdef VBOX_WITH_MSC_ANALYZE_THIS 5337 5340 TEMPLATE_VBoxRc_CXXFLAGS += /analyze … … 5484 5487 if "$(VBOX_VCC_TOOL_STEM)" >= "VCC120" 5485 5488 TEMPLATE_VBoxR0_CXXFLAGS += -Gw 5489 endif 5490 if "$(VBOX_VCC_TOOL_STEM)" >= "VCC140" # Reduces object size, speeding up linking and makes inline behaviour C++11 compliant. 5491 TEMPLATE_VBoxR0_CXXFLAGS += -Zc:inline 5486 5492 endif 5487 5493 if "$(VBOX_VCC_TOOL_STEM)" >= "VCC142" # Don't waste space on x86/amd64-on-arm emulation optimizations. … … 5684 5690 if "$(VBOX_VCC_TOOL_STEM)" >= "VCC120" 5685 5691 TEMPLATE_VBoxR0Drv_CXXFLAGS += -Gw 5692 endif 5693 if "$(VBOX_VCC_TOOL_STEM)" >= "VCC140" # Reduces object size, speeding up linking and makes inline behaviour C++11 compliant. 5694 TEMPLATE_VBoxR0Drv_CXXFLAGS += -Zc:inline 5686 5695 endif 5687 5696 if "$(VBOX_VCC_TOOL_STEM)" >= "VCC142" # Don't waste space on x86/amd64-on-arm emulation optimizations. … … 6249 6258 TEMPLATE_VBoxR3Exe_CXXFLAGS += -Gw 6250 6259 endif 6260 if "$(VBOX_VCC_TOOL_STEM)" >= "VCC140" # Reduces object size, speeding up linking and makes inline behaviour C++11 compliant. 6261 TEMPLATE_VBoxR3Exe_CXXFLAGS += -Zc:inline 6262 endif 6251 6263 ifdef VBOX_WITH_MSC_ANALYZE_THIS 6252 6264 TEMPLATE_VBoxR3Exe_CXXFLAGS += /analyze … … 7200 7212 if "$(VBOX_VCC_TOOL_STEM)" >= "VCC120" 7201 7213 TEMPLATE_VBoxMainExe_CXXFLAGS += -Gw 7214 endif 7215 if "$(VBOX_VCC_TOOL_STEM)" >= "VCC140" # Reduces object size, speeding up linking and makes inline behaviour C++11 compliant. 7216 TEMPLATE_VBoxMainExe_CXXFLAGS += -Zc:inline 7202 7217 endif 7203 7218 ifdef VBOX_WITH_MSC_ANALYZE_THIS … … 7914 7929 TEMPLATE_VBoxQtGuiExe_CXXFLAGS += -Gw 7915 7930 endif 7931 if "$(VBOX_VCC_TOOL_STEM)" >= "VCC140" # Reduces object size, speeding up linking and makes inline behaviour C++11 compliant. 7932 TEMPLATE_VBoxQtGuiExe_CXXFLAGS += -Zc:inline 7933 endif 7916 7934 ifdef VBOX_WITH_MSC_ANALYZE_THIS 7917 7935 TEMPLATE_VBoxQtGuiExe_CXXFLAGS += /analyze … … 8232 8250 if "$(VBOX_VCC_TOOL_STEM)" >= "VCC120" 8233 8251 TEMPLATE_VBoxBldProg_CXXFLAGS += -Gw 8252 endif 8253 if "$(VBOX_VCC_TOOL_STEM)" >= "VCC140" # Reduces object size, speeding up linking and makes inline behaviour C++11 compliant. 8254 TEMPLATE_VBoxBldProg_CXXFLAGS += -Zc:inline 8234 8255 endif 8235 8256 if "$(VBOX_VCC_TOOL_STEM)" >= "VCC142" # Don't waste space on x86/amd64-on-arm emulation optimizations.
Note:
See TracChangeset
for help on using the changeset viewer.