交叉编译curl(mipsel版)

系统平台: Ubuntu14.04 64bit 麒麟
目标平台: MT7620A(主芯片)
交叉工具链: mipsel-openwrt-linux-

1. 从官网下载源码 (
http://curl.haxx.se/download )
2. 解压
3. 配置configure
./configure --host=mipsel-openwrt-linux --prefix=/usr/curl
/* 设置安装路径是因为我不知道可执行文件在哪,并且运行curl所需库要安装的时候才会形成。*/
4. 编译
make
5. 安装
make install
6. 上传到板子
系统平台 目标平台
/usr/curl/bin/curl -> /usr/bin
/usr/curl/lib/lib* -> /usr/lib

你可能感兴趣的:(交叉编译curl(mipsel版))