Skip to content

Commit

Permalink
clang13
Browse files Browse the repository at this point in the history
  • Loading branch information
viraptor committed Oct 5, 2023
1 parent 9ed7bfe commit cb6a824
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkgs/build-support/libredirect/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
let
# aarch64-darwin needs a clang that can build arm64e binaries, so make sure a version of LLVM
# is used that can do that, but prefer the stdenv one if it is new enough.
llvmPkgs = if (lib.versionAtLeast (lib.getVersion llvmPackages.clang) "13")
then llvmPackages
else llvmPackages_13;
llvmPkgs = llvmPackages_13; #if (lib.versionAtLeast (lib.getVersion llvmPackages.clang) "13")
#then llvmPackages
#else llvmPackages_13;
in
if stdenv.hostPlatform.isStatic
then throw ''
Expand Down

0 comments on commit cb6a824

Please sign in to comment.