下载地址
https://sourceforge.net/projects/libpng/files/
以上链接下,有各个版本的源码下载。
编译环境
Ubuntu 18.04.3 LTS
编译配置
假设:
- 交叉编译工具:arm-linux-
使用的交叉编译工具版本信息如下:Target: arm-linux-gnueabi Configured with: --target=arm-linux-gnueabi --enable-threads --disable-libmudflap --disable-libssp --disable-libstdcxx-pch --with-gnu-as --with-gnu-ld --enable-languages=c,c++ --enable-shared --enable-lto --enable-symvers=gnu --enable-__cxa_atexit --disable-nls --enable-clocale=gnu --enable-libgomp --disable-libitm --enable-poison-system-directories Thread model: posix gcc version 6.3.0
- 交叉编译结果安装目录:/home/user/cross-compile/
编译配置如下:
./configure --prefix=/home/user/cross-compile/libpng --host=arm-linux CC=arm-linux-gcc --enable-shared --enable-static LDFLAGS=-L/opt/cross-tools/lib CPPFLAGS=-I/opt/cross-tools/include
make
make install
- –prefix:指定安装目录
- –host:指定目标主机类型
- CC:指定交叉编译工具
- –enable-shared:编译生成.so动态库
- –enable-static:编译生成.a静态库
- LDFLAGS:指定链接库目录。不一定需要,看编译具体情况
- CPPFLAGS:指定头文件目录。不一定需要,看编译具体情况