openwrt学习笔记二--Openwrt的SDK编译程序添加库举例--curl库

在openwrt编程中需要调用curl库如何处理:

1.编译源码的时候,需要选上curl库: Libraries-->libcurl;用新编译出来的SDK编译程序,用新的固件安装软件。

2.自己写的程序下即src下的Makefile要添加-l curl


3.要在helloworld目录下的Makefile添加  “DEPENDS:=+libcurl”, 如下位置添加:

define Package/helloworld  
        SECTION:=utils  
        CATEGORY:=Utilities  
        TITLE:=Helloworld -- prints a snarky message  
        DEPENDS:=+libcurl
endef



参考:http://blog.csdn.net/alps1992/article/details/37923487

你可能感兴趣的:(openwrt)