Commit 96a2f1b4 authored by Adam Joseph's avatar Adam Joseph
Browse files

gcc: kludge to prevent mass-rebuild

This commit is reverted in #240596 (which must go to staging).
parent 63305d00
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -214,7 +214,10 @@ lib.pipe (stdenv.mkDerivation ({
            )
          '';

  inherit noSysDirs staticCompiler withoutTargetLibc
  # kludge to prevent a mass-rebuild; will be removed in a PR sent to staging
  crossStageStatic = withoutTargetLibc;

  inherit noSysDirs staticCompiler
    libcCross crossMingw;

  inherit (callFile ../common/dependencies.nix { })
+4 −1
Original line number Diff line number Diff line
@@ -227,7 +227,10 @@ lib.pipe (stdenv.mkDerivation ({
            )
          '';

  inherit noSysDirs staticCompiler withoutTargetLibc
  # kludge to prevent a mass-rebuild; will be removed in a PR sent to staging
  crossStageStatic = withoutTargetLibc;

  inherit noSysDirs staticCompiler
    libcCross crossMingw;

  inherit (callFile ../common/dependencies.nix { })
+4 −1
Original line number Diff line number Diff line
@@ -271,7 +271,10 @@ lib.pipe (stdenv.mkDerivation ({
            )
          '';

  inherit noSysDirs staticCompiler withoutTargetLibc
  # kludge to prevent a mass-rebuild; will be removed in a PR sent to staging
  crossStageStatic = withoutTargetLibc;

  inherit noSysDirs staticCompiler
    libcCross crossMingw;

  inherit (callFile ../common/dependencies.nix { }) depsBuildBuild nativeBuildInputs depsBuildTarget buildInputs depsTargetTarget;
+4 −1
Original line number Diff line number Diff line
@@ -265,7 +265,10 @@ lib.pipe (stdenv.mkDerivation ({
            )
          '';

  inherit noSysDirs staticCompiler withoutTargetLibc
  # kludge to prevent a mass-rebuild; will be removed in a PR sent to staging
  crossStageStatic = withoutTargetLibc;

  inherit noSysDirs staticCompiler
    libcCross crossMingw;

  inherit (callFile ../common/dependencies.nix { }) depsBuildBuild nativeBuildInputs depsBuildTarget buildInputs depsTargetTarget;
+4 −1
Original line number Diff line number Diff line
@@ -232,7 +232,10 @@ lib.pipe (stdenv.mkDerivation ({
        ''
    else null;

  inherit noSysDirs staticCompiler langJava withoutTargetLibc
  # kludge to prevent a mass-rebuild; will be removed in a PR sent to staging
  crossStageStatic = withoutTargetLibc;

  inherit noSysDirs staticCompiler langJava
    libcCross crossMingw;

  inherit (callFile ../common/dependencies.nix { })
Loading