diff options
Diffstat (limited to 'lib/systems')
| -rw-r--r-- | lib/systems/default.nix | 4 | ||||
| -rw-r--r-- | lib/systems/inspect.nix | 1 | ||||
| -rw-r--r-- | lib/systems/parse.nix | 3 |
3 files changed, 1 insertions, 7 deletions
diff --git a/lib/systems/default.nix b/lib/systems/default.nix index a19972326195..ce257d5307b6 100644 --- a/lib/systems/default.nix +++ b/lib/systems/default.nix @@ -121,8 +121,6 @@ let "uclibc" else if final.isAndroid then "bionic" - else if final.isLLVMLibc then - "llvm" else if final.isLinux # default then @@ -248,7 +246,7 @@ let # don't support dynamic linking, but don't get the `staticMarker`. # `pkgsStatic` sets `isStatic=true`, so `pkgsStatic.hostPlatform` always # has the `staticMarker`. - isStatic = final.isWasi || final.isRedox || final.isLLVMLibc; + isStatic = final.isWasi || final.isRedox; # Just a guess, based on `system` inherit diff --git a/lib/systems/inspect.nix b/lib/systems/inspect.nix index c330d5473bc5..58654a49e008 100644 --- a/lib/systems/inspect.nix +++ b/lib/systems/inspect.nix @@ -386,7 +386,6 @@ rec { uclibceabi uclibceabihf ]; - isLLVMLibc = [ { abi = abis.llvm; } ]; isEfi = [ { diff --git a/lib/systems/parse.nix b/lib/systems/parse.nix index ec773c824def..0dfd91b7bb76 100644 --- a/lib/systems/parse.nix +++ b/lib/systems/parse.nix @@ -740,9 +740,6 @@ rec { }; uclibc = { }; - # LLVM libc - llvm = { }; - unknown = { }; }; |
