Commit 6665f67b authored by Jonas Rembser's avatar Jonas Rembser
Browse files

root: remove some explicit disabling of compiler warnings on clang

Remove some explicit disabling of compiler warnings on clang. There is
no need for that: we saw the warnings on our own CI and made sure to
either fix or disable them.
parent 9792a8be
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -199,9 +199,6 @@ stdenv.mkDerivation rec {
    "-Druntime_cxxmodules=OFF"
  ];

  # suppress warnings from compilation of the vendored clang to avoid running into log limits on the Hydra
  NIX_CFLAGS_COMPILE = lib.optionals stdenv.cc.isGNU [ "-Wno-shadow" "-Wno-maybe-uninitialized" ];

  postInstall = ''
    for prog in rootbrowse rootcp rooteventselector rootls rootmkdir rootmv rootprint rootrm rootslimtree; do
      wrapProgram "$out/bin/$prog" \