【MT8516 - 03】nghttp2交叉编译

1  下载源码

1)链接:https://github.com/nghttp2/nghttp2

2)或者执行:

git clone https://github.com/nghttp2/nghttp2.git

2  配置及编译过程

依次执行:

cd nghttp2
autoreconf -i
automake
autoconf
./configure --prefix=DIR --host=aarch64-poky-linux
make
make install

其中:

1)--prefi=DIR:指定生成lib include bin目录的路径,DIR修改为自定义位置;如果DIR采用默认值(/usr/local),需要执行"sudo make install";

2)执行“./configure --help”,可以查看帮助和选择;

3)执行配置及编译前,需要先执行source执行,配置MT8516交叉编译环境(参考:【MT8516 - 01】MT8516交叉编译工具链配置过程)

 

你可能感兴趣的:(MT8516)