mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-12 04:35:41 +03:00
pkgs/top-level/stage.nix: add pkgsLLVMLibc
This commit is contained in:
parent
f72b341556
commit
41b14024d2
6 changed files with 24 additions and 0 deletions
|
@ -102,6 +102,7 @@ let
|
|||
else if final.isMusl then "musl"
|
||||
else if final.isUClibc then "uclibc"
|
||||
else if final.isAndroid then "bionic"
|
||||
else if final.isLLVMLibc then "llvm"
|
||||
else if final.isLinux /* default */ then "glibc"
|
||||
else if final.isFreeBSD then "fblibc"
|
||||
else if final.isOpenBSD then "oblibc"
|
||||
|
|
|
@ -113,6 +113,7 @@ rec {
|
|||
isGnu = with abis; map (a: { abi = a; }) [ gnuabi64 gnuabin32 gnu gnueabi gnueabihf gnuabielfv1 gnuabielfv2 ];
|
||||
isMusl = with abis; map (a: { abi = a; }) [ musl musleabi musleabihf muslabin32 muslabi64 ];
|
||||
isUClibc = with abis; map (a: { abi = a; }) [ uclibc uclibceabi uclibceabihf ];
|
||||
isLLVMLibc = [ { abi = abis.llvm; } ];
|
||||
|
||||
isEfi = [
|
||||
{ cpu = { family = "arm"; version = "6"; }; }
|
||||
|
|
|
@ -416,6 +416,9 @@ rec {
|
|||
uclibceabihf = { float = "hard"; };
|
||||
uclibc = {};
|
||||
|
||||
# LLVM libc
|
||||
llvm = {};
|
||||
|
||||
unknown = {};
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue