一、ubuntu版本问题

ubuntu版本哀求,如果编译的是MTK官方固件,建议不要太高版本的,由于版本太高,编译不通过,笔者曾经考试测验不同版本的,基本上ubuntu16编译没什么太大的问题,如果是18版本或者是更高版本,同样的固件是编译不通过的。
如果你利用的是网上开源的代码,那最新版本是没什么问题的,低版本可能会短缺相应的库,安装即可,尤其是哀求python是3.0版本以上的。

二、编译出错细节处理

openwrtphp编译环境openwrt情况搭建编译以及版本解释 Python

1、缺点

freadahead.c: In function 'freadahead':freadahead.c:64:3: error: #error "Please port gnulib freadahead.c to your platform! Look at the definition of fflush, fread on your system, then report this to bug-gnulib."#error "Please port gnulib freadahead.c to your platform! Look at the definition of fflush, fread on your system, then report this to bug-gnulib."

办理:

cd build_dir/host/m4-1.4.17/sed -i 's/IO_ftrylockfile/IO_EOF_SEEN/' lib/.cecho "#define _IO_IN_BAXKUP 0x100">>lib/stdio-impl.h

2、提示没有help2man,可以按照提示的网站去搜索官网下载相应的库(我的是从官网高下载最新的安装包)

(help2man-1.49.2.tar这是我只能装的版本)

也可以用以下命令:

wget https://mirrors.sjtug.sjtu.edu.cn/gnu/help2man/help2man-1.47.9.tar.xzxz -d help2man-1.47.9.tar.xztar -xvf help2man-1.47.9.tar./configure --prefix=/usr/localmakesudo make install

3、碰着xxx文件deny,须要开启权限,可以给最高权限编译就不报错

4、缺点

fatal: unable to access 'https://git.openwrt.org/openwrt/openwrt.git/': server certificate verification failed. CAfile: /etc/ssl/certs/ca-certificates.crt CRLfile: none

办理:

git config --global http.sslVerify "false"

5、缺点

perl: warning: Setting locale failed.perl: warning: Please check that your locale settings:LANGUAGE = "zh_CN:zh",LC_ALL = (unset),LANG = "zh_CN.UTF-8"are supported and installed on your system.

办理:在~/.bashrc中添加一句话

export LC_ALL=C,然后source ~/.bashrc 就行了

6、编译其他问题可以参考该链接去办理:https://blog.csdn.net/kuangzuxiaoN/article/details/121458746

三、关于编译

依赖库安装:

sudo apt-get updatesudo apt-get install git g++ make libncurses5-dev subversion libssl-dev gawk libxml-parser-perl unzip wget python xz-utils vim zlibc zlib1g zlib1g-dev openjdk-8-jdk build-essential ccache gettext xsltproc

资源更新:

./scripts/feeds update -a./scripts/feeds install -a

关于这两个命令,是在相应的文件夹下的脚本文件,实行这两条命令就可以更新和下载该版本代码的最新资源。

编译命令:

make V=99

或make V=s -jx (x代表数字,数字是几就代表用几核编译),第一次变异要的韶光比较长,可以多核编译,涌现问题的时候采取单核编译,就可以知道详细是什么问题了。

图中便是编译成功的界面,我采取的是四核编译。