头图

一、参考资料

Ubuntu系统下交叉编译libpng-CSDN博客

二、交叉编译libpng

1. 下载源码

下载libpnghttp://www.libpng.org/pub/png/libpng.html

下载并解压源码。

tar -xvzf libpng-1.6.45.tar.gz
cd libpng-1.6.45

2. 设置环境变量

设置交叉编译工具链的bin路径:

export PATH=/home/yoyo/360Downloads/toolchains/arm-linux-gnueabihf/bin:$PATH

3. 生成configure配置

# 创建安装路径
mkdir arm32_install

# 生成configure
./configure \
    --prefix=/home/yoyo/360Downloads/libpng-1.6.45/arm32_install \
    --host=arm-linux-gnueabihf \
    --with-sysroot=/home/yoyo/360Downloads/toolchains/arm-linux-gnueabihf/arm-linux-gnueabihf/libc \
    --enable-shared \
    --enable-static \
    CPPFLAGS="-I/home/yoyo/360Downloads/zlib-1.3.1/zlibbuild/include" \
    LDFLAGS="-L/home/yoyo/360Downloads/zlib-1.3.1/zlibbuild/lib" \
    LIBS="-lz"

输出示例:

yoyo@yoyo:~/360Downloads/libpng-1.6.45$ ./configure \
> --prefix=/home/yoyo/360Downloads/libpng-1.6.45/arm32_install \
> --host=arm-linux-gnueabihf \
> --with-sysroot=/home/yoyo/360Downloads/toolchains/arm-linux-gnueabihf/arm-linux-gnueabihf/libc \
> --enable-shared \
> --enable-static \
> CPPFLAGS="-I/home/yoyo/360Downloads/zlib-1.3.1/zlibbuild/include" \
> LDFLAGS="-L/home/yoyo/360Downloads/zlib-1.3.1/zlibbuild/lib" \
> LIBS="-lz"
checking for a BSD-compatible install... /usr/bin/install -c
checking whether sleep supports fractional seconds... yes
checking filesystem timestamp resolution... 0.01
checking whether build environment is sane... yes
checking for arm-linux-gnueabihf-strip... arm-linux-gnueabihf-strip
checking for a race-free mkdir -p... /usr/bin/mkdir -p
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking xargs -n works... yes
checking whether to enable maintainer-specific portions of Makefiles... no
checking for arm-linux-gnueabihf-gcc... arm-linux-gnueabihf-gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... yes
checking for suffix of object files... o
checking whether the compiler supports GNU C... yes
checking whether arm-linux-gnueabihf-gcc accepts -g... yes
checking for arm-linux-gnueabihf-gcc option to enable C11 features... none needed
checking whether arm-linux-gnueabihf-gcc understands -c and -o together... yes
checking whether make supports the include directive... yes (GNU style)
checking dependency style of arm-linux-gnueabihf-gcc... gcc3
checking dependency style of arm-linux-gnueabihf-gcc... gcc3
checking build system type... x86_64-pc-linux-gnu
checking host system type... arm-unknown-linux-gnueabihf
checking for a sed that does not truncate output... /usr/bin/sed
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for fgrep... /usr/bin/grep -F
checking how to print strings... printf
checking for ld used by arm-linux-gnueabihf-gcc... /home/yoyo/360Downloads/toolchains/arm-linux-gnueabihf/arm-linux-gnueabihf/bin/ld
checking if the linker (/home/yoyo/360Downloads/toolchains/arm-linux-gnueabihf/arm-linux-gnueabihf/bin/ld) is GNU ld... yes
checking how to run the C preprocessor... arm-linux-gnueabihf-gcc -E
checking for gawk... (cached) mawk
checking whether ln -s works... yes
checking whether make sets $(MAKE)... (cached) yes
checking for BSD- or MS-compatible name lister (nm)... /home/yoyo/360Downloads/toolchains/arm-linux-gnueabihf/bin/arm-linux-gnueabihf-nm -B
checking the name lister (/home/yoyo/360Downloads/toolchains/arm-linux-gnueabihf/bin/arm-linux-gnueabihf-nm -B) interface... BSD nm
checking the maximum length of command line arguments... 1572864
checking how to convert x86_64-pc-linux-gnu file names to arm-unknown-linux-gnueabihf format... func_convert_file_noop
checking how to convert x86_64-pc-linux-gnu file names to toolchain format... func_convert_file_noop
checking for /home/yoyo/360Downloads/toolchains/arm-linux-gnueabihf/arm-linux-gnueabihf/bin/ld option to reload object files... -r
checking for file... file
checking for arm-linux-gnueabihf-objdump... arm-linux-gnueabihf-objdump
checking how to recognize dependent libraries... pass_all
checking for arm-linux-gnueabihf-dlltool... no
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for arm-linux-gnueabihf-ranlib... arm-linux-gnueabihf-ranlib
checking for arm-linux-gnueabihf-ar... arm-linux-gnueabihf-ar
checking for archiver @FILE support... @
checking for arm-linux-gnueabihf-strip... (cached) arm-linux-gnueabihf-strip
checking command to parse /home/yoyo/360Downloads/toolchains/arm-linux-gnueabihf/bin/arm-linux-gnueabihf-nm -B output from arm-linux-gnueabihf-gcc object... ok
checking for sysroot... /home/yoyo/360Downloads/toolchains/arm-linux-gnueabihf/arm-linux-gnueabihf/libc
checking for a working dd... /usr/bin/dd
checking how to truncate binary pipes... /usr/bin/dd bs=4096 count=1
checking for arm-linux-gnueabihf-mt... no
checking for mt... mt
configure: WARNING: using cross tools not prefixed with host triplet
checking if mt is a manifest tool... no
checking for stdio.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for strings.h... yes
checking for sys/stat.h... yes
checking for sys/types.h... yes
checking for unistd.h... yes
checking for dlfcn.h... yes
checking for objdir... .libs
checking if arm-linux-gnueabihf-gcc supports -fno-rtti -fno-exceptions... no
checking for arm-linux-gnueabihf-gcc option to produce PIC... -fPIC -DPIC
checking if arm-linux-gnueabihf-gcc PIC flag -fPIC -DPIC works... yes
checking if arm-linux-gnueabihf-gcc static flag -static works... yes
checking if arm-linux-gnueabihf-gcc supports -c -o file.o... yes
checking if arm-linux-gnueabihf-gcc supports -c -o file.o... (cached) yes
checking whether the arm-linux-gnueabihf-gcc linker (/home/yoyo/360Downloads/toolchains/arm-linux-gnueabihf/arm-linux-gnueabihf/bin/ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking if awk (mawk) works... yes
checking if we need to force back C standard to C89... no
checking whether struct tm is in sys/time.h or time.h... time.h
checking for C/C++ restrict keyword... __restrict__
checking for pow... no
checking for pow in -lm... yes
checking for clock_gettime... yes
checking for zlibVersion in -lz... yes
checking for feenableexcept in -lm... yes
checking for feenableexcept... yes
checking if using Solaris linker... no
checking if libraries can be versioned... yes
checking for symbol prefix... 
configure: pkgconfig directory is ${libdir}/pkgconfig
configure: Extra options for compiler: 
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating Makefile
config.status: creating libpng.pc
config.status: creating libpng-config
config.status: creating config.h
config.status: executing depfiles commands
config.status: executing libtool commands

4. 编译安装

# 编译
make -j6

# 安装
make install

输出示例:

yoyo@yoyo:~/360Downloads/libpng-1.6.45$ make install
make  install-am
make[1]: Entering directory '/home/yoyo/360Downloads/libpng-1.6.45'
make[2]: Entering directory '/home/yoyo/360Downloads/libpng-1.6.45'
 /usr/bin/mkdir -p '/home/yoyo/360Downloads/libpng-1.6.45/arm32_install/lib'
 /bin/bash ./libtool   --mode=install /usr/bin/install -c   libpng16.la '/home/yoyo/360Downloads/libpng-1.6.45/arm32_install/lib'
libtool: install: /usr/bin/install -c .libs/libpng16.so.16.45.0 /home/yoyo/360Downloads/libpng-1.6.45/arm32_install/lib/libpng16.so.16.45.0
libtool: install: (cd /home/yoyo/360Downloads/libpng-1.6.45/arm32_install/lib && { ln -s -f libpng16.so.16.45.0 libpng16.so.16 || { rm -f libpng16.so.16 && ln -s libpng16.so.16.45.0 libpng16.so.16; }; })
libtool: install: (cd /home/yoyo/360Downloads/libpng-1.6.45/arm32_install/lib && { ln -s -f libpng16.so.16.45.0 libpng16.so || { rm -f libpng16.so && ln -s libpng16.so.16.45.0 libpng16.so; }; })
libtool: install: /usr/bin/install -c .libs/libpng16.lai /home/yoyo/360Downloads/libpng-1.6.45/arm32_install/lib/libpng16.la
libtool: install: /usr/bin/install -c .libs/libpng16.a /home/yoyo/360Downloads/libpng-1.6.45/arm32_install/lib/libpng16.a
libtool: install: chmod 644 /home/yoyo/360Downloads/libpng-1.6.45/arm32_install/lib/libpng16.a
libtool: install: arm-linux-gnueabihf-ranlib /home/yoyo/360Downloads/libpng-1.6.45/arm32_install/lib/libpng16.a
libtool: finish: PATH="/home/yoyo/360Downloads/toolchains/arm-linux-gnueabihf/bin:/home/yoyo/360Downloads/cmake-3.31.3-linux-x86_64/bin:/home/yoyo/miniconda3/condabin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/sbin" ldconfig -n /home/yoyo/360Downloads/libpng-1.6.45/arm32_install/lib
----------------------------------------------------------------------
Libraries have been installed in:
   /home/yoyo/360Downloads/libpng-1.6.45/arm32_install/lib

If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the '-LLIBDIR'
flag during linking and do at least one of the following:
   - add LIBDIR to the 'LD_LIBRARY_PATH' environment variable
     during execution
   - add LIBDIR to the 'LD_RUN_PATH' environment variable
     during linking
   - use the '-Wl,-rpath -Wl,LIBDIR' linker flag
   - have your system administrator add LIBDIR to '/etc/ld.so.conf'

See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
 /usr/bin/mkdir -p '/home/yoyo/360Downloads/libpng-1.6.45/arm32_install/bin'
  /bin/bash ./libtool   --mode=install /usr/bin/install -c pngfix png-fix-itxt '/home/yoyo/360Downloads/libpng-1.6.45/arm32_install/bin'
libtool: install: /usr/bin/install -c .libs/pngfix /home/yoyo/360Downloads/libpng-1.6.45/arm32_install/bin/pngfix
libtool: install: /usr/bin/install -c png-fix-itxt /home/yoyo/360Downloads/libpng-1.6.45/arm32_install/bin/png-fix-itxt
 /usr/bin/mkdir -p '/home/yoyo/360Downloads/libpng-1.6.45/arm32_install/bin'
 /usr/bin/install -c libpng16-config '/home/yoyo/360Downloads/libpng-1.6.45/arm32_install/bin'
make  install-exec-hook
make[3]: Entering directory '/home/yoyo/360Downloads/libpng-1.6.45'
+ cd /home/yoyo/360Downloads/libpng-1.6.45/arm32_install/lib
+ for ext in a dll.a so so.16.45 la sl dylib
+ rm -f libpng.a
+ test -f libpng16.a
+ ln -s libpng16.a libpng.a
+ for ext in a dll.a so so.16.45 la sl dylib
+ rm -f libpng.dll.a
+ test -f libpng16.dll.a
+ for ext in a dll.a so so.16.45 la sl dylib
+ rm -f libpng.so
+ test -f libpng16.so
+ ln -s libpng16.so libpng.so
+ for ext in a dll.a so so.16.45 la sl dylib
+ rm -f libpng.so.16.45
+ test -f libpng16.so.16.45
+ for ext in a dll.a so so.16.45 la sl dylib
+ rm -f libpng.la
+ test -f libpng16.la
+ ln -s libpng16.la libpng.la
+ for ext in a dll.a so so.16.45 la sl dylib
+ rm -f libpng.sl
+ test -f libpng16.sl
+ for ext in a dll.a so so.16.45 la sl dylib
+ rm -f libpng.dylib
+ test -f libpng16.dylib
+ cd /home/yoyo/360Downloads/libpng-1.6.45/arm32_install/bin
+ rm -f libpng-config
+ ln -s libpng16-config libpng-config
make[3]: Leaving directory '/home/yoyo/360Downloads/libpng-1.6.45'
 /usr/bin/mkdir -p '/home/yoyo/360Downloads/libpng-1.6.45/arm32_install/share/man/man3'
 /usr/bin/install -c -m 644 libpng.3 libpngpf.3 '/home/yoyo/360Downloads/libpng-1.6.45/arm32_install/share/man/man3'
 /usr/bin/mkdir -p '/home/yoyo/360Downloads/libpng-1.6.45/arm32_install/share/man/man5'
 /usr/bin/install -c -m 644 png.5 '/home/yoyo/360Downloads/libpng-1.6.45/arm32_install/share/man/man5'
 /usr/bin/mkdir -p '/home/yoyo/360Downloads/libpng-1.6.45/arm32_install/include/libpng16'
 /usr/bin/install -c -m 644 pnglibconf.h '/home/yoyo/360Downloads/libpng-1.6.45/arm32_install/include/libpng16'
 /usr/bin/mkdir -p '/home/yoyo/360Downloads/libpng-1.6.45/arm32_install/lib/pkgconfig'
 /usr/bin/install -c -m 644 libpng16.pc '/home/yoyo/360Downloads/libpng-1.6.45/arm32_install/lib/pkgconfig'
 /usr/bin/mkdir -p '/home/yoyo/360Downloads/libpng-1.6.45/arm32_install/include/libpng16'
 /usr/bin/install -c -m 644 png.h pngconf.h '/home/yoyo/360Downloads/libpng-1.6.45/arm32_install/include/libpng16'
make  install-data-hook
make[3]: Entering directory '/home/yoyo/360Downloads/libpng-1.6.45'
+ cd /home/yoyo/360Downloads/libpng-1.6.45/arm32_install/include
+ for f in pnglibconf.h png.h pngconf.h
+ rm -f pnglibconf.h
+ ln -s libpng16/pnglibconf.h pnglibconf.h
+ for f in pnglibconf.h png.h pngconf.h
+ rm -f png.h
+ ln -s libpng16/png.h png.h
+ for f in pnglibconf.h png.h pngconf.h
+ rm -f pngconf.h
+ ln -s libpng16/pngconf.h pngconf.h
+ cd /home/yoyo/360Downloads/libpng-1.6.45/arm32_install/lib/pkgconfig
+ rm -f libpng.pc
+ ln -s libpng16.pc libpng.pc
make[3]: Leaving directory '/home/yoyo/360Downloads/libpng-1.6.45'
make[2]: Leaving directory '/home/yoyo/360Downloads/libpng-1.6.45'
make[1]: Leaving directory '/home/yoyo/360Downloads/libpng-1.6.45'

5. 移植到开发板

将编译好的文件,拷贝到开发板。

# 拷贝 include
cp -r ./arm32_install/include/* /PATH/TO/arm-linux-gnueabihf/arm-linux-gnueabihf/libc/usr/include

# 拷贝lib
cp -r ./arm32_install/lib/* /PATH/TO/arm-linux-gnueabihf/arm-linux-gnueabihf/libc/usr/lib

技术交流群


花花少年
1 声望0 粉丝

本账号旨在记录和分享知识,不用于商业用途!