Changeset 98215 in vbox
- Timestamp:
- Jan 22, 2023 10:29:23 PM (2 years ago)
- svn:sync-xref-src-repo-rev:
- 155404
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Config.kmk
r98214 r98215 3338 3338 $(QUIET)$(APPEND) '$@' 'VBOX_GCC_Wno-inline ?= $(call VBOX_GCC_CHECK_CXX,-Wno-inline,)' 3339 3339 $(QUIET)$(APPEND) '$@' 'VBOX_GCC_Wno-unknown-pragmas ?= $(call VBOX_GCC_CHECK_CXX,-Wno-unknown-pragmas,)' 3340 $(QUIET)$(APPEND) '$@' 'VBOX_GCC_Wno-deprecated-copy ?= $(call VBOX_GCC_CHECK_CXX,-Wno-deprecated-copy,)' 3340 3341 $(QUIET)$(APPEND) '$@' 'VBOX_GCC_fno-stack-protector ?= $(call VBOX_GCC_CHECK_CC,-fno-stack-protector,)' 3341 3342 $(QUIET)$(APPEND) '$@' 'VBOX_GCC_fno-dwarf2-cfi-asm ?= $(call VBOX_GCC_CHECK_CC,-fno-dwarf2-cfi-asm,)' … … 7948 7949 TEMPLATE_VBoxQtGuiExe_CXXFLAGS += -fPIC 7949 7950 # Needed for GCC 9. Even system's Qt 5.12.4 (on Ubuntu 19.10) did not have this fixed yet. 7950 TEMPLATE_VBoxQtGuiExe_CXXFLAGS.linux = -Wno-deprecated-copy$(TEMPLATE_VBoxQtGuiExe_CXXFLAGS)7951 TEMPLATE_VBoxQtGuiExe_CXXFLAGS.linux = $(VBOX_GCC_Wno-deprecated-copy) $(TEMPLATE_VBoxQtGuiExe_CXXFLAGS) 7951 7952 TEMPLATE_VBoxQtGuiExe_LDFLAGS += -fPIC 7952 7953 endif # not darwin, os2 or win … … 8731 8732 # 8732 8733 # Guest additions libraries (all static). 8733 # The _ MINI and _SHARED are bothcompiled as PIC and intended for linking into a .so/.dll/.dylib.8734 # The _SHARED variants are compiled as PIC and intended for linking into a .so/.dll/.dylib. 8734 8735 # 8735 8736 VBOX_LIB_IPRT_GUEST_R3 = $(VBOX_PATH_ADDITIONS_LIB)/RuntimeGuestR3$(VBOX_SUFF_LIB) -
trunk/src/VBox/Frontends/VirtualBox/Makefile.kmk
r98169 r98215 384 384 endif 385 385 386 VirtualBox_CXXFLAGS.linux += -Wno-class-memaccess386 VirtualBox_CXXFLAGS.linux += $(VBOX_GCC_Wno-class-memaccess) 387 387 388 388 ## @todo we're using a number of deprecated APIs, please fix and remove these! … … 415 415 endif 416 416 417 VirtualBoxVM_CXXFLAGS.linux += -Wno-class-memaccess417 VirtualBoxVM_CXXFLAGS.linux += $(VBOX_GCC_Wno-class-memaccess) 418 418 419 419 ## @todo we're using a number of deprecated APIs, please fix and remove these! … … 446 446 # 447 447 448 UICommon_CXXFLAGS.linux += -Wno-class-memaccess448 UICommon_CXXFLAGS.linux += $(VBOX_GCC_Wno-class-memaccess) 449 449 UICommon_CXXFLAGS.win += -wd4868 # prevents std::stable_sort from using functor/function comparator 450 450 UICommon_CXXFLAGS.win += -bigobj # COMWrappers.cpp fails with too many sections on win64-dep otherwise.
Note:
See TracChangeset
for help on using the changeset viewer.