Commit 5a3155ec authored by Emily's avatar Emily
Browse files

llvmPackages_13.*: unpin GCC

This was added to LLVM 6, 8, 9, 10, 13, and 14 (but no others) in
695fe131, and then I guess gradually
got removed from all of them except 13. Anyway, I successfully built
`llvmPackages_13.stdenv` with the default GCC.
parent a2b5353b
Loading
Loading
Loading
Loading
+0 −8
Original line number Diff line number Diff line
@@ -5,7 +5,6 @@
  buildPackages,
  targetPackages,
  stdenv,
  gcc12Stdenv,
  pkgs,
  recurseIntoAttrs,
  # This is the default binutils, but with *this* version of LLD rather
@@ -81,13 +80,6 @@ let
              ;
          }
          // packageSetArgs # Allow overrides.
          // {
            stdenv =
              if (lib.versions.major release_version == "13" && stdenv.cc.cc.isGNU or false) then
                gcc12Stdenv
              else
                stdenv; # does not build with gcc13
          }
        )
      )
    );