Hello,
I am having problems building the firmware file. It worked in the past, but when I repeat the same steps now (as far as I can tell, I am following exactly the same procedure), the build frequently fails.
I am using an Ubuntu virtual machine and running the commands listed on the OpenWrt documentation page:
https://openwrt.org/docs/guide-developer/toolchain/install-buildsystem
First, I install the required dependencies:
sudo apt update
sudo apt install build-essential clang flex bison g++ gawk \
gcc-multilib g++-multilib gettext git libncurses5-dev libssl-dev \
python3-setuptools rsync swig unzip zlib1g-dev file wget
Then I run the following commands:
git clone https://git.openwrt.org/openwrt/openwrt.git
git pull
git checkout v22.03.3
./scripts/feeds update -a
./scripts/feeds install -a
make menuconfig
make -j $(nproc) kernel_menuconfig
make -j $(nproc) defconfig download clean world
This process has worked before and I was able to successfully build a .bin firmware file.
However, when I repeat the same steps now, the build fails most of the time with the following error:
ERROR: package/feeds/packages/python-dateutil failed to build.
Has anyone experienced this issue or knows what might cause it?
Thank you.