From b2b2c220167c6073c9f4aec32d74044dd384762d Mon Sep 17 00:00:00 2001 From: Yureka Date: Sat, 10 Feb 2024 00:43:16 +0100 Subject: 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. --- pkgs/development/libraries/libunwind/default.nix | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'pkgs') 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; }; } -- cgit v1.2.3