Changeset 83213 in vbox for trunk/src/VBox/Main
- Timestamp:
- Mar 5, 2020 11:09:48 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/webservice/Makefile.kmk
r82968 r83213 197 197 $(VBOXWEB_GSOAPH_FROM_XSLT) 198 198 199 200 # GCC 9.2 doesn't cope well with the split files (internal error), so 201 # don't do it there. 202 if !defined(VBOX_WITHOUT_SPLIT_SOAPC) && !defined(VBOX_WITH_SPLIT_SOAPC) && $(VBOX_GCC_VERSION_CXX) >= 90200 203 VBOX_WITHOUT_SPLIT_SOAPC := 1 204 endif 199 205 200 206 # disable -fvisibility=hidden as the SOAP stuff does not properly set the visibility attributes … … 286 292 $(VBOX_GSOAP_CXX_SOURCES)_CXXFLAGS = \ 287 293 -Wno-format \ 288 294 $(VBOX_GCC_Wno-int-in-bool-context) \ 289 295 $(if $(VBOX_GCC_Wlogical-op),-Wno-error=logical-op,) 290 296 # currently necessary when compiling against OpenSSL 1.0 due to a missing 291 297 # typecase from 'const v3_ext_method*' to 'aka v3_ext_method*'. 292 298 $(VBOX_GSOAP_CXX_SOURCES)_CXXFLAGS += -fpermissive 299 # Necessary with gcc 9.2.1 for some reason: 300 $(VBOX_GSOAP_CXX_SOURCES)_CXXFLAGS += -Wno-deprecated-declarations 301 293 302 294 303 endif
Note:
See TracChangeset
for help on using the changeset viewer.