summary refs log tree commit diff
path: root/pkgs/os-specific/windows/default.nix
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2021-05-01 03:03:19 +0000
committerJohn Ericson <John.Ericson@Obsidian.Systems>2021-05-14 21:29:51 +0000
commit18c38f8aee732b6202042383fc35997a39361830 (patch)
tree466554af31e75e2739adbc2f236206e37eb72fad /pkgs/os-specific/windows/default.nix
parente3a1c149d26bd82c4b42ba5e06fec73933ce8bf6 (diff)
downloadnixpkgs-18c38f8aee732b6202042383fc35997a39361830.tar
nixpkgs-18c38f8aee732b6202042383fc35997a39361830.tar.gz
nixpkgs-18c38f8aee732b6202042383fc35997a39361830.tar.bz2
nixpkgs-18c38f8aee732b6202042383fc35997a39361830.tar.lz
nixpkgs-18c38f8aee732b6202042383fc35997a39361830.tar.xz
nixpkgs-18c38f8aee732b6202042383fc35997a39361830.tar.zst
nixpkgs-18c38f8aee732b6202042383fc35997a39361830.zip
treewide: All the linker to be chosen independently
This will begin the process of breaking up the `useLLVM` monolith. That
is good in general, but I hope will be good for NetBSD and Darwin in
particular.

Co-authored-by: sterni <sternenseemann@systemli.org>
Diffstat (limited to 'pkgs/os-specific/windows/default.nix')
-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 7c8041206ca..15e3d7f89ab 100644
--- a/pkgs/os-specific/windows/default.nix
+++ b/pkgs/os-specific/windows/default.nix
@@ -19,7 +19,7 @@ lib.makeScope newScope (self: with self; {
 
   crossThreadsStdenv = overrideCC crossLibcStdenv
     (if stdenv.hostPlatform.useLLVM or false
-     then buildPackages.llvmPackages_8.lldClangNoLibcxx
+     then buildPackages.llvmPackages_8.clangNoLibcxx
      else buildPackages.gccCrossStageStatic.override (old: {
        bintools = old.bintools.override {
          libc = libcCross;