mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2025-02-26 08:22:31 +00:00
build system: no deprecated-copy warnings on gcc ≥ 9
Too many warnings at this point.
This commit is contained in:
parent
02a074b61f
commit
ea62983378
1
Rakefile
1
Rakefile
@ -155,6 +155,7 @@ def setup_globals
|
||||
cxxflags += " -Wno-extra-semi" if is_clang? || check_compiler_version("gcc", "8.0.0")
|
||||
cxxflags += " -Wmisleading-indentation -Wduplicated-cond" if check_compiler_version("gcc", "6.0.0")
|
||||
cxxflags += " -Wshadow-compatible-local -Wduplicated-branches" if check_compiler_version("gcc", "7.0.0")
|
||||
cxxflags += " -Wno-deprecated-copy" if check_compiler_version("gcc", "9.0.0")
|
||||
cxxflags += " #{c(:QT_CFLAGS)} #{c(:BOOST_CPPFLAGS)} #{c(:USER_CXXFLAGS)}"
|
||||
|
||||
ldflags = ""
|
||||
|
Loading…
Reference in New Issue
Block a user