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
  • Loading branch information
rhelmot committed Sep 23, 2024
1 parent 81c2eef commit b2f4395
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 b2f4395

Please sign in to comment.