https://savannah.nongnu.org/download/freetype/
以上地址有freetype各个版本的源码下载
1. ubuntu20.04LTS
2. arm-linux-gnueabihf-gcc
3. gcc version 4.9.2
4. freetype-2.10.0
wget https://savannah.nongnu.org/download/freetype/freetype-2.10.0.tar.bz2
tar xvf freetype-2.10.0.tar.bz2
cd freetype-2.10.0/
./configure --prefix=/home/wei/freetype --host=arm-linux CC=/opt/a7_toolchain/gcc-linaro-arm-linux-gnueabihf-4.9-2014.09_linux/bin/arm-linux-gnueabihf-gcc --enable-shared --enable-static --with-zlib=no --with-bzip2=no --with-png=no --with-harfbuzz=no
make && make install
头文件路径: /home/wei/freetype/include/freetype2/
库文件路径: /home/wei/freetype/lib
1. 本次移植不使用zlib、bzip2、png、harfbuzz等
2. 本次移植同时生成了静态库与动态库,可根据需要选择使用
原文:https://www.cnblogs.com/StartMyblog/p/14914975.html