Changeset 68875 in vbox
- Timestamp:
- Sep 26, 2017 12:43:39 PM (7 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Config.kmk
r68874 r68875 5270 5270 else 5271 5271 TEMPLATE_VBoxR3DllNonPedanticFast_CXXFLAGS = $(TEMPLATE_VBoxR3DllNonPedantic_CXXFLAGS) -O2 -fno-omit-frame-pointer 5272 TEMPLATE_VBoxR3DllNonPedanticFast_CFLAGS = $(TEMPLATE_VBoxR3DllNonPedantic_C XXFLAGS) -O2 -fno-omit-frame-pointer5272 TEMPLATE_VBoxR3DllNonPedanticFast_CFLAGS = $(TEMPLATE_VBoxR3DllNonPedantic_CFLAGS) -O2 -fno-omit-frame-pointer 5273 5273 endif 5274 5274 endif … … 5299 5299 TEMPLATE_VBoxR3RuntimeDllNonPedantic_CFLAGS = $(filter-out -MD$(VBOX_VCC_CRT_TYPE), $(TEMPLATE_VBoxR3DllNonPedantic_CFLAGS)) -MT$(VBOX_VCC_CRT_TYPE) 5300 5300 TEMPLATE_VBoxR3RuntimeDllNonPedantic_CXXFLAGS = $(filter-out -MD$(VBOX_VCC_CRT_TYPE), $(TEMPLATE_VBoxR3DllNonPedantic_CXXFLAGS)) -MT$(VBOX_VCC_CRT_TYPE) 5301 endif 5302 5303 # 5304 # Same as VBoxR3RuntimeDllNonPedantic, only it optimized debug builds too. 5305 # 5306 TEMPLATE_VBoxR3RuntimeDllNonPedanticFast = For libraries that are linked into VBoxRT, but must be excluded from -pedantic warnings, optmized debug. 5307 TEMPLATE_VBoxR3RuntimeDllNonPedanticFast_EXTENDS = VBoxR3RuntimeDllNonPedantic 5308 ifeq ($(KBUILD_TYPE),debug) 5309 ifeq ($(KBUILD_TARGET),win) 5310 TEMPLATE_VBoxR3RuntimeDllNonPedanticFast_CXXFLAGS = $(filter-out -O0, $(TEMPLATE_VBoxR3RuntimeDllNonPedantic_CXXFLAGS)) -O2 -Oy- 5311 TEMPLATE_VBoxR3RuntimeDllNonPedanticFast_CXXFLAGS.debug = $(filter-out -RTC%, $(TEMPLATE_VBoxR3RuntimeDllNonPedantic_CXXFLAGS.debug)) 5312 TEMPLATE_VBoxR3RuntimeDllNonPedanticFast_CFLAGS = $(filter-out -O0, $(TEMPLATE_VBoxR3RuntimeDllNonPedantic_CFLAGS)) -O2 -Oy- 5313 TEMPLATE_VBoxR3RuntimeDllNonPedanticFast_CFLAGS.debug = $(filter-out -RTC%, $(TEMPLATE_VBoxR3RuntimeDllNonPedantic_CFLAGS.debug)) 5314 else 5315 TEMPLATE_VBoxR3RuntimeDllNonPedanticFast_CXXFLAGS = $(TEMPLATE_VBoxR3RuntimeDllNonPedantic_CXXFLAGS) -O2 -fno-omit-frame-pointer 5316 TEMPLATE_VBoxR3RuntimeDllNonPedanticFast_CFLAGS = $(TEMPLATE_VBoxR3RuntimeDllNonPedantic_CFLAGS) -O2 -fno-omit-frame-pointer 5317 endif 5301 5318 endif 5302 5319 -
trunk/src/libs/liblzf-3.4/Makefile.kmk
r63113 r68875 25 25 LIBRARIES += VBox-liblzf-static 26 26 endif 27 VBox-liblzf_TEMPLATE = VBoxR3RuntimeDllNonPedantic 27 VBox-liblzf_TEMPLATE = VBoxR3RuntimeDllNonPedanticFast 28 28 VBox-liblzf_BLD_TYPE = release # WARNING! Always optimizing this lib. 29 29 VBox-liblzf_DEFS = ULTRA_FAST=1 HLOG=12
Note:
See TracChangeset
for help on using the changeset viewer.