开源库交叉编译

一般开源库大部分安装都是分三步:configure  make  make  install。如果想交叉编译先 configure --help 看看是否支持交叉编译,若支持可按下边模式配置
./configure --host=arm-linux  CC=arm-none-linux-gnueabi-gcc  --prefix=安装目录。

你可能感兴趣的:(开源库交叉编译)