Merge pull request #68434 from d-goldin/release-19.09/qtwebtoolkit-disable-memaccess-warnings

qtwebkit: fixing build / reducing build log size
This commit is contained in:
worldofpeace 2019-09-10 18:18:51 -04:00 committed by GitHub
commit 9cbc8f38a6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -51,8 +51,12 @@ qtModule {
'';
NIX_CFLAGS_COMPILE =
# with gcc7 this warning blows the log over Hydra's limit
[ "-Wno-expansion-to-defined" ]
[
# with gcc7 this warning blows the log over Hydra's limit
"-Wno-expansion-to-defined"
# with gcc8, -Wclass-memaccess became part of -Wall and this too exceeds the logging limit
"-Wno-class-memaccess"
]
# with clang this warning blows the log over Hydra's limit
++ optional stdenv.isDarwin "-Wno-inconsistent-missing-override"
++ optionals flashplayerFix