[openwrt/openwrt] libunwind: Add MIPS64 dep check

LEDE Commits lede-commits at lists.infradead.org
Mon Mar 29 23:15:53 BST 2021


hauke pushed a commit to openwrt/openwrt.git, branch openwrt-21.02:
https://git.openwrt.org/b2c9a8741ff2ea4c6689482aece0f35e15b428c8

commit b2c9a8741ff2ea4c6689482aece0f35e15b428c8
Author: Donald Hoskins <grommish at gmail.com>
AuthorDate: Sun Feb 14 15:35:45 2021 -0500

    libunwind: Add MIPS64 dep check
    
    libunwind dependency check does not allow for MIPS64 arch.  Add MIPS64 awareness.
    
    libunwind seems to support MIPS64 without issues, it was limited by the dep arch
    check in the Makefile.
    
    Used to compile Suricata6/Rust locally without issue.
    
    Signed-off-by: Donald Hoskins <grommish at gmail.com>
    (cherry picked from commit ea6d4bdde20a3fecbfc44b99f53373e1d0666e34)
---
 package/libs/libunwind/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/libs/libunwind/Makefile b/package/libs/libunwind/Makefile
index 89e6f84ff5..7f79996d25 100644
--- a/package/libs/libunwind/Makefile
+++ b/package/libs/libunwind/Makefile
@@ -32,7 +32,7 @@ define Package/libunwind
   CATEGORY:=Libraries
   TITLE:=The libunwind project
   URL:=http://www.nongnu.org/libunwind/
-  DEPENDS:=@((mips||mipsel||x86_64||arm||aarch64)||(USE_GLIBC&&(powerpc||i386))) +zlib
+  DEPENDS:=@((mips||mipsel||mips64||x86_64||arm||aarch64)||(USE_GLIBC&&(powerpc||i386))) +zlib
   ABI_VERSION:=8
 endef
 



More information about the lede-commits mailing list