Changeset 45450 in vbox
- Timestamp:
- Apr 10, 2013 8:58:57 AM (11 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
-
Config.kmk (modified) (2 diffs)
-
configure (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Config.kmk
r45250 r45450 1504 1504 # Compiler optimization flags. 1505 1505 # 1506 VBOX_GCC_WARN ?= -Wall $(VBOX_GCC_Wextra) $(VBOX_GCC_Wno-missing-field-initializers) -Wno-unused -Wno-trigraphs $(VBOX_GCC_fdiagnostics-show-option) 1506 VBOX_GCC_WARN ?= -Wall $(VBOX_GCC_Wextra) $(VBOX_GCC_Wno-missing-field-initializers) -Wno-unused -Wno-trigraphs $(VBOX_GCC_fdiagnostics-show-option) $(VBOX_GCC_no-unused-parameter) 1507 1507 VBOX_GCC_WARN_PEDANTIC = -Wshadow $(VBOX_GCC_WARN) -Wno-long-long 1508 1508 ifdef VBOX_WITH_MASOCHISTIC_WARNINGS … … 2286 2286 $(QUIET)$(APPEND) '$@' 'endif' 2287 2287 endif 2288 # Prevent warnings about unused parameters as of gcc-4.8 as this warning is now very verbose 2289 $(QUIET)$(APPEND) '$@' 'ifneq ($$(VBOX_GCC_VERSION_CXX),)' 2290 $(QUIET)$(APPEND) '$@' ' ifneq ($$(int-ge $$(VBOX_GCC_VERSION_CXX),40800),)' 2291 $(QUIET)$(APPEND) '$@' ' VBOX_GCC_no-unused-parameter ?= -Wno-unused-parameter' 2292 $(QUIET)$(APPEND) '$@' ' endif' 2293 $(QUIET)$(APPEND) '$@' 'endif' 2288 2294 ifeq ($(KBUILD_TARGET),solaris) 2289 2295 $(QUIET)$(APPEND) '$@' 'VBOX_GCC_msave-args ?= $(call VBOX_GCC_CHECK_CXX,-msave-args,)' -
trunk/configure
r45204 r45450 417 417 -o \( $cc_maj -eq 3 -a $cc_min -lt 2 \) \ 418 418 -o \( $cc_maj -eq 4 -a $cc_min -lt 1 -a "$OS" != "darwin" \) \ 419 -o \( $cc_maj -eq 4 -a $cc_min -gt 7\) \419 -o \( $cc_maj -eq 4 -a $cc_min -gt 8 \) \ 420 420 -o $cc_maj -gt 4 ]; then 421 421 log_failure "gcc version $cc_ver found, expected gcc 3.x with x>1 or gcc 4.x with 0<x<8"
Note:
See TracChangeset
for help on using the changeset viewer.

