about summary refs log tree commit diff
path: root/pkgs/os-specific
diff options
context:
space:
mode:
authorAdam Joseph <54836058+amjoseph-nixpkgs@users.noreply.github.com>2023-07-12 23:30:43 +0000
committerGitHub <noreply@github.com>2023-07-12 23:30:43 +0000
commit218669e143a4801e4440546bd291068b3edaebaa (patch)
tree282eccc0698ab582c45c41e3393ee10354092d3e /pkgs/os-specific
parentf92c3239762fd5bae5601e849ad3a56e56c7e3e8 (diff)
parent96a2f1b4e1315251f1916f64c4632dbf7eb40522 (diff)
Merge pull request #238154 from amjoseph-nixpkgs/pr/gcc/crossStageStatic
gccCrossStageStatic: enable dynamic libraries, rename it
Diffstat (limited to 'pkgs/os-specific')
-rw-r--r--pkgs/os-specific/windows/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/os-specific/windows/default.nix b/pkgs/os-specific/windows/default.nix
index 8d6dd50548e51..12859de8a20fe 100644
--- a/pkgs/os-specific/windows/default.nix
+++ b/pkgs/os-specific/windows/default.nix
@@ -20,7 +20,7 @@ lib.makeScope newScope (self: with self; {
   crossThreadsStdenv = overrideCC crossLibcStdenv
     (if stdenv.hostPlatform.useLLVM or false
      then buildPackages.llvmPackages_8.clangNoLibcxx
-     else buildPackages.gccCrossStageStatic.override (old: {
+     else buildPackages.gccWithoutTargetLibc.override (old: {
        bintools = old.bintools.override {
          libc = libcCross;
        };