首页 文章

在OpenWRT中构建错误

提问于
浏览
0

我按照OpenWrt网站上给出的以下步骤来设置OpenWrt构建系统 .

sudo apt-get update

sudo apt-get install git-core build-essential libssl-dev libncurses5-dev unzip gawk zlib1g-dev

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

git clone -b chaos_calmer git://github.com/openwrt/openwrt.git

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

我在配置文件中进行了必要的更改并运行了 make 命令 . 它给出以下错误:make:*** [world]错误1

有解决方案吗

2 回答

  • 0

    使用以下命令选项来了解您获得的确切错误

    make -j1 V=s
    

    有时由于网速较慢(在获取openwrt的软件包源代码时)或由于RAM可用性较低或配置错误导致此错误 . 发布您正在获取的错误消息块,以了解有关该问题的更多信息 .

  • 0

    请跟进以下先决条件:https://wiki.openwrt.org/doc/howto/buildroot.exigence

    请特别注意“已知先决条件表及其相应包”表 .

相关问题