Skip to content

Commit

Permalink
freebsd.mkDerivation: use stdenvNoLibs instead of stdenvNoLibc to avo…
Browse files Browse the repository at this point in the history
…id compiler-rt (#344090)
  • Loading branch information
Mic92 authored Sep 24, 2024
2 parents 9a34ae4 + b2f4395 commit 32f0bfd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/os-specific/bsd/freebsd/pkgs/mkDerivation.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
lib,
stdenv,
stdenvNoCC,
stdenvNoLibc,
stdenvNoLibs,
overrideCC,
buildPackages,
stdenvNoLibcxx ? overrideCC stdenv buildPackages.llvmPackages.clangNoLibcxx,
Expand All @@ -28,7 +28,7 @@ lib.makeOverridable (
if attrs.noCC or false then
stdenvNoCC
else if attrs.noLibc or false then
stdenvNoLibc
stdenvNoLibs
else if attrs.noLibcxx or false then
stdenvNoLibcxx
else
Expand Down

0 comments on commit 32f0bfd

Please sign in to comment.