mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 03:30:45 +00:00
libunwind: use default LLVM on riscv32-linux
This was set because the default LLVM was too old. Now it's ahead, and llvmPackages_14.libunwind no longer builds for riscv32-linux.
This commit is contained in:
parent
ea8b7f8c4b
commit
387fbb7a4b
|
@ -22232,7 +22232,7 @@ with pkgs;
|
|||
|
||||
libunwind =
|
||||
if stdenv.isDarwin then darwin.libunwind
|
||||
else if stdenv.hostPlatform.system == "riscv32-linux" then llvmPackages_14.libunwind
|
||||
else if stdenv.hostPlatform.system == "riscv32-linux" then llvmPackages.libunwind
|
||||
else callPackage ../development/libraries/libunwind { };
|
||||
|
||||
libuv = darwin.apple_sdk_11_0.callPackage ../development/libraries/libuv { };
|
||||
|
|
Loading…
Reference in a new issue