当前位置: 代码迷 >> 综合 >> missing dependencies for the following libraries:libpthread.so.0.(OpenWRT)
  详细解决方案

missing dependencies for the following libraries:libpthread.so.0.(OpenWRT)

热度:66   发布时间:2024-01-09 07:35:52.0

自己在openwrt/package/utils/目录下新添加了一个程序包,在编译的时候报错,

...is missing dependencies for the following libraries:libpthread.so.0.

这需要在该程序包的顶层makefile中添加+libpthread部分。

define Package/rssi_client
    SECTION:=utils
    CATEGORY:=Utilities
    TITLE:=rssi tool
    DEPENDS:=+libncurses +libpthread
endef

  相关解决方案