Changeset 83214 in vbox for trunk/src/VBox/Main/webservice
- Timestamp:
- Mar 5, 2020 11:31:08 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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.