Changeset 83214 in vbox
- Timestamp:
- Mar 5, 2020 11:31:08 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 136354
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Config.kmk
r83169 r83214 2832 2832 $(QUIET)$(APPEND) '$@' ' ifneq ($$(int-ge $$(VBOX_GCC_VERSION_CC),40500),)' 2833 2833 $(QUIET)$(APPEND) '$@' ' VBOX_GCC_Wlogical-op ?= $(call VBOX_GCC_CHECK_CC,-Wlogical-op,)' 2834 $(QUIET)$(APPEND) '$@' ' VBOX_GCC_Wno-logical-op ?= $$(subst -Wlogical-op,-Wno-logical-op,$$(VBOX_GCC_Wlogical-op)) 2834 2835 $(QUIET)$(APPEND) '$@' ' endif' 2835 2836 $(QUIET)$(APPEND) '$@' 'endif' -
trunk/src/VBox/Main/webservice/Makefile.kmk
r83213 r83214 210 210 TEMPLATE_VBOXWEBR3EXE_CXXFLAGS = $(filter-out $(VBOX_GCC_fvisibility-hidden) $(VBOX_GCC_fvisibility-inlines-hidden),\ 211 211 $(TEMPLATE_VBOXR3EXE_CXXFLAGS)) 212 ifn1of ($(KBUILD_TARGET), win) 213 TEMPLATE_VBOXWEBR3EXE_CXXFLAGS += $(VBOX_GCC_Wno-misleading-indentation) 214 endif 212 215 213 216 ifdef VBOX_GSOAP_INSTALLED … … 293 296 -Wno-format \ 294 297 $(VBOX_GCC_Wno-int-in-bool-context) \ 295 $( if $(VBOX_GCC_Wlogical-op),-Wno-error=logical-op,)298 $(VBOX_GCC_Wno-logical-op) 296 299 # currently necessary when compiling against OpenSSL 1.0 due to a missing 297 300 # typecase from 'const v3_ext_method*' to 'aka v3_ext_method*'. … … 356 359 vboxwebsrv_CXXFLAGS.win += -bigobj 357 360 ifn1of ($(KBUILD_TARGET), win) 358 vboxwebsrv_CXXFLAGS += -Wno-shadow $(VBOX_GCC_Wno-literal-suffix) 361 vboxwebsrv_CXXFLAGS += -Wno-shadow $(VBOX_GCC_Wno-literal-suffix) $(VBOX_GCC_Wno-misleading-indentation) 359 362 ifn1of ($(KBUILD_TYPE), debug) # Save time+memory by using -O1 instead of -O2. 360 363 vboxwebsrv_CXXFLAGS += -O0 … … 374 377 $(VBOXWEB_OUT_DIR)/methodmaps.cpp \ 375 378 $(VBOXWEB_OUT_DIR)/soapServer.cpp \ 376 379 $(VBOXWEB_OUT_DIR)/vboxweb-wsdl.c 377 380 vboxwebsrv_SOURCES.win = \ 378 381 VBoxWebSrv.rc … … 380 383 $(VBOXWEB_OUT_DIR)/methodmaps.cpp \ 381 384 $(VBOXWEB_OUT_DIR)/soapServer.cpp \ 382 $(VBOXWEB_OUT_DIR)/vboxweb-wsdl.c 383 # gcc 6.2 warns about aborting misleading indentation detection (too much code) 384 vboxweb.cpp_CXXFLAGS = \ 385 $(VBOX_GCC_Wno-misleading-indentation) 385 $(VBOXWEB_OUT_DIR)/vboxweb-wsdl.c 386 386 vboxwebsrv_ORDERDEPS = $(VBOXWEB_OUT_DIR)/gsoap_copy_all_ts 387 387 endif # !VBOX_ONLY_SDK
Note:
See TracChangeset
for help on using the changeset viewer.