mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 01:43:15 +00:00
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:
commit
9cbc8f38a6
@ -51,8 +51,12 @@ qtModule {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE =
|
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
|
# with clang this warning blows the log over Hydra's limit
|
||||||
++ optional stdenv.isDarwin "-Wno-inconsistent-missing-override"
|
++ optional stdenv.isDarwin "-Wno-inconsistent-missing-override"
|
||||||
++ optionals flashplayerFix
|
++ optionals flashplayerFix
|
||||||
|
Loading…
Reference in New Issue
Block a user