summaryrefslogtreecommitdiffstats
path: root/pkgs
diff options
context:
space:
mode:
authorYureka <yuka@yuka.dev>2024-02-10 00:43:16 +0100
committerGitHub <noreply@github.com>2024-02-10 00:43:16 +0100
commitb2b2c220167c6073c9f4aec32d74044dd384762d (patch)
treebf64aef12cc0a3c30e7d0cbf93902d7edbe81906 /pkgs
parente9b728e4fdbd2efee1eebad2e6e591b253e7b2f8 (diff)
libunwind: remove incorrect badPlatforms (#286560)
It is unclear what platforms are actually meant to be unsupported, but some platforms are included in this badPlatforms pattern even though they work, e.g. armv7l-unknown-linux-musleabihf. Actually unsupported platforms / broken builds can be added again in a dedicated list.
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/libraries/libunwind/default.nix12
1 files changed, 0 insertions, 12 deletions
diff --git a/pkgs/development/libraries/libunwind/default.nix b/pkgs/development/libraries/libunwind/default.nix
index cae3ebed89f6..19d6f0f6cd02 100644
--- a/pkgs/development/libraries/libunwind/default.nix
+++ b/pkgs/development/libraries/libunwind/default.nix
@@ -45,18 +45,6 @@ stdenv.mkDerivation rec {
maintainers = with maintainers; [ orivej ];
# https://github.com/libunwind/libunwind#libunwind
platforms = [ "aarch64-linux" "armv5tel-linux" "armv6l-linux" "armv7a-linux" "armv7l-linux" "i686-freebsd13" "i686-linux" "loongarch64-linux" "mips64el-linux" "mipsel-linux" "powerpc64-linux" "powerpc64le-linux" "riscv64-linux" "s390x-linux" "x86_64-freebsd13" "x86_64-linux" "x86_64-solaris" ];
- # libunwind relies on getcontext/setcontext,
- # and only has a musl implementation for some platforms
- # https://github.com/libunwind/libunwind/issues/33
- # https://github.com/libunwind/libunwind/issues/69
- badPlatforms = [ {
- isAarch64 = false;
- isRiscV64 = false;
- isS390x = false;
- isx86_64 = false;
- isMusl = true;
- parsed = {};
- } ];
license = licenses.mit;
};
}