openwrt编译自己的package时遇到缺失libpthread.so.0依赖的问题

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

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

这需要在该程序包的顶层makefile中添加红色字体部分。

define Package/rssi_client
	SECTION:=utils
	CATEGORY:=Utilities
	TITLE:=rssi tool
	DEPENDS:=+libncurses +libpthread
endef
另外,还是在该文件中

添加

TARGET_LDFLAGS:= -lpthread
将线程库的链接添加到目标链接标识符里。

你可能感兴趣的:(c语言,openwrt)