20250505解决xargs libx86_64-linux-gnulibc.so.6 version `GLIBC_2.34‘ not found (required by xargs)_mihomo party linux
rootroot@rootroot-X99-Turbo:~/friendlywrt-h3$
rootroot@rootroot-X99-Turbo:~/friendlywrt-h3$ ./build.sh friendlywrt
rootroot@rootroot-X99-Turbo:~/friendlywrt-h3$ cd /etc/apt/
rootroot@rootroot-X99-Turbo:/etc/apt$
rootroot@rootroot-X99-Turbo:/etc/apt$ ll
rootroot@rootroot-X99-Turbo:/etc/apt$ sudo cp sources.list sources.list.bak1
[sudo] password for rootroot:
rootroot@rootroot-X99-Turbo:/etc/apt$
rootroot@rootroot-X99-Turbo:/etc/apt$ ll
rootroot@rootroot-X99-Turbo:/etc/apt$ sudo chmod 777 sources.list
rootroot@rootroot-X99-Turbo:/etc/apt$ sudo echo \"deb http://th.archive.ubuntu.com/ubuntu jammy main\" >> sources.list
rootroot@rootroot-X99-Turbo:/etc/apt$ diff sources.list sources.list.bak1
rootroot@rootroot-X99-Turbo:/etc/apt$ sudo apt update
rootroot@rootroot-X99-Turbo:/etc/apt$ sudo apt install libc6
rootroot@rootroot-X99-Turbo:/etc/apt$
20250505解决xargs libx86_64-linux-gnulibc.so.6 version `GLIBC_2.34\' not found (required by xargs)
2025/5/5 13:50
缘起:在Ubuntu20.04下编译 NanoPi NEO开发板的FriendlyCore系统,发现系统/SDK自带的m4-1.4.18.tar.xz
Z:\\friendlywrt-h3\\friendlywrt\\dl\\m4-1.4.18.tar.xz
编译异常。百度之后才知道高版本的系统会出现编译异常的。
mkdir -p /home/rootroot/friendlywrt-h3/friendlywrt/staging_dir/host/stamp
touch /home/rootroot/friendlywrt-h3/friendlywrt/build_dir/host/flock/.built
touch /home/rootroot/friendlywrt-h3/friendlywrt/staging_dir/host/stamp/.flock_installed
find /home/rootroot/friendlywrt-h3/friendlywrt/build_dir/host/flock -mindepth 1 -maxdepth 1 -not \'(\' -type f -and -name \'.*\' -and -size 0 \')\' | xargs -r rm -rf
xargs: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by xargs)
find: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33\' not found (required by find)
find: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by find)
make[3]: *** [Makefile:25: host-compile] Error 1
make[3]: Leaving directory \'/home/rootroot/friendlywrt-h3/friendlywrt/tools/flock\'
time: tools/flock/compile#0.20#0.06#0.31
make[2]: *** [tools/Makefile:159: tools/flock/compile] Error 2
make[2]: Leaving directory \'/home/rootroot/friendlywrt-h3/friendlywrt\'
make[1]: *** [tools/Makefile:155: /home/rootroot/friendlywrt-h3/friendlywrt/staging_dir/target-arm_cortex-a7+neon-vfpv4_musl_eabi/stamp/.tools_compile_yyyyynnyyyynyyyyynyynnyyyynyyyyyyyyyyyyyyynyynynnyyynnyyy] Error 2
make[1]: Leaving directory \'/home/rootroot/friendlywrt-h3/friendlywrt\'
make: *** [/home/rootroot/friendlywrt-h3/friendlywrt/include/toplevel.mk:227: world] Error 2
Command exited with non-zero status 2
you take 0:12.76 to build friendlywrt
rootroot@rootroot-X99-Turbo:~/friendlywrt-h3$
rootroot@rootroot-X99-Turbo:~/friendlywrt-h3$
rootroot@rootroot-X99-Turbo:~/friendlywrt-h3$
rootroot@rootroot-X99-Turbo:~/friendlywrt-h3$ ./build.sh friendlywrt
BING:xargs: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by xargs)
https://blog.csdn.net/huazhang_001/article/details/128828999
version `GLIBC_2.34‘ not found简单有效解决方法
Error /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34’ not found
问题描述
运行命令
riscv-nuclei-linux-gnu-gcc
1
错误提示
riscv-nuclei-linux-gnu-gcc: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.32\' not found (required by riscv-nuclei-linux-gnu-gcc)
riscv-nuclei-linux-gnu-gcc: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33\' not found (required by riscv-nuclei-linux-gnu-gcc)
riscv-nuclei-linux-gnu-gcc: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by riscv-nuclei-linux-gnu-gcc)
1
2
3
检查版本
strings /lib/x86_64-linux-gnu/libc.so.6 |grep GLIBC_
1
显示结果
GLIBC_2.2.5
GLIBC_2.2.6
GLIBC_2.3
GLIBC_2.3.2
GLIBC_2.3.3
GLIBC_2.3.4
GLIBC_2.4
GLIBC_2.5
GLIBC_2.6
GLIBC_2.7
GLIBC_2.8
GLIBC_2.9
GLIBC_2.10
GLIBC_2.11
GLIBC_2.12
GLIBC_2.13
GLIBC_2.14
GLIBC_2.15
GLIBC_2.16
GLIBC_2.17
GLIBC_2.18
GLIBC_2.22
GLIBC_2.23
GLIBC_2.24
GLIBC_2.25
GLIBC_2.26
GLIBC_2.27
GLIBC_2.28
GLIBC_2.29
GLIBC_2.30
GLIBC_PRIVATE
最高版本只到2.30,由于使用的系统为ubuntu20.04,已经升级到了系统版本的最高版本了。
解决方案
添加一个高级版本系统的源,直接升级libc6.
Ubuntu 20.04 - added this repo as described in the link
编辑源
sudo vi /etc/apt/sources.list
1
添加高版本的源
deb http://th.archive.ubuntu.com/ubuntu jammy main #添加该行到文件
sudo echo \"deb http://th.archive.ubuntu.com/ubuntu jammy main\" >> sources.list
运行升级
sudo apt update
sudo apt install libc6
1
2
查看结果
strings /lib/x86_64-linux-gnu/libc.so.6 |grep GLIBC_
GLIBC_2.2.5
GLIBC_2.2.6
GLIBC_2.3
GLIBC_2.3.2
GLIBC_2.3.3
GLIBC_2.3.4
GLIBC_2.4
GLIBC_2.5
GLIBC_2.6
GLIBC_2.7
GLIBC_2.8
GLIBC_2.9
GLIBC_2.10
GLIBC_2.11
GLIBC_2.12
GLIBC_2.13
GLIBC_2.14
GLIBC_2.15
GLIBC_2.16
GLIBC_2.17
GLIBC_2.18
GLIBC_2.22
GLIBC_2.23
GLIBC_2.24
GLIBC_2.25
GLIBC_2.26
GLIBC_2.27
GLIBC_2.28
GLIBC_2.29
GLIBC_2.30
GLIBC_2.31 //以下为新增
GLIBC_2.32
GLIBC_2.33
GLIBC_2.34
GLIBC_2.35
GLIBC_PRIVATE
完整的LOG:
[BEGIN] 2025/5/5 11:13:04
rootroot@rootroot-X99-Turbo:~$
rootroot@rootroot-X99-Turbo:~$
rootroot@rootroot-X99-Turbo:~$ ll
total 342538872
drwxr-xr-x 43 rootroot rootroot 4096 5月 5 11:12 ./
drwxr-xr-x 5 root root 4096 2月 25 09:37 ../
drwxrwxrwx 3 rootroot rootroot 4096 4月 10 12:29 1-源码/
drwxrwxrwx 3 rootroot rootroot 4096 3月 28 11:04 20241224的神州数码RK3566/
-rw-r--r-- 1 root root 4658325687 2月 25 19:17 2025-02-25_09-37-43a.tgz
-rw-r--r-- 1 root root 4975972819 2月 25 19:18 2025-02-25_19-10-08b.tgz
-rw-r--r-- 1 root root 4975940122 2月 25 20:06 2025-02-25_20-02-25c.tgz
-rw-r--r-- 1 root root 5714175125 3月 6 11:31 2025-03-06_11-21-48d.tgz
-rw-r--r-- 1 root root 8873949934 3月 19 09:49 2025-03-19_09-45-09f.tgz
-rwx------ 1 rootroot rootroot 63250 4月 16 15:55 \'20250416在荣品的PRO-RK3566开发板的Android13下配置开机自启动native C的应用程序.txt\'*
drwxrwxrwx 36 rootroot rootroot 4096 4月 22 12:55 Android13.0/
-rw-rw-r-- 1 rootroot rootroot 68940021105 4月 22 14:02 Android13.0_1344.tgz
-rw-rw-r-- 1 rootroot rootroot 60631498833 4月 15 10:42 Android13.0_20250415_1032.tgz
-rw-r--r-- 1 rootroot rootroot 3771 4月 25 10:29 bak1.bashrc
-rw------- 1 rootroot rootroot 26514 4月 30 19:06 .bash_history
-rw-r--r-- 1 rootroot rootroot 220 2月 24 18:43 .bash_logout
-rw-r--r-- 1 rootroot rootroot 3852 4月 25 10:30 .bashrc
drwxr-xr-x 19 rootroot rootroot 4096 4月 7 10:38 .buildroot-ccache/
drwx------ 2 rootroot rootroot 4096 4月 23 13:45 \'buildroot linux系统的cpu频率无法查看和修改呢?\'/
-rw-rw-r-- 1 rootroot rootroot 82997 4月 28 11:20 bundle.txt
drwx------ 136 rootroot rootroot 4096 4月 29 14:39 .cache/
-rwx------ 1 rootroot rootroot 109962432 4月 29 20:03 clash-verge_1.3.8_amd64.AppImage*
-rwx------ 1 rootroot rootroot 35622344 4月 29 20:02 clash-verge_1.3.8_amd64.deb*
-rwx------ 1 rootroot rootroot 48199902 4月 24 14:32 Clash.Verge_2.2.3_amd64.deb*
-rwx------ 1 rootroot rootroot 34066737 4月 24 14:32 Clash.Verge_2.2.3_x64-setup.exe*
drwxr-xr-x 3 rootroot rootroot 4096 4月 25 15:38 .cmake/
drwx------ 20 rootroot rootroot 4096 4月 30 14:15 .config/
drwxr-xr-x 2 rootroot rootroot 4096 2月 24 18:55 Desktop/
drwxr-xr-x 2 rootroot rootroot 4096 2月 24 18:55 Documents/
drwxr-xr-x 2 rootroot rootroot 4096 4月 30 14:15 Downloads/
-rw-rw-r-- 1 rootroot rootroot 1246131 4月 25 18:43 error1_gettext.txt
drwxrwxr-x 11 rootroot rootroot 4096 4月 25 17:04 friendlywrt-h3/
-rw-rw-r-- 1 rootroot rootroot 8806 4月 15 19:55 ft5x06.txt
drwx------ 3 rootroot rootroot 4096 4月 29 20:06 .gnupg/
-rwx------ 1 rootroot rootroot 608 4月 18 10:21 GPIO.txt*
drwxrwxr-x 2 rootroot rootroot 4096 4月 25 17:00 h3/
drwxrwxr-x 3 rootroot rootroot 4096 4月 15 09:51 hailuo_temp/
-rwx------ 1 rootroot rootroot 580 4月 19 17:56 io.txt*
drwxr-xr-x 5 rootroot rootroot 4096 3月 7 09:39 .local/
drwx------ 2 rootroot rootroot 4096 4月 25 17:29 LOG/
-rwx------ 1 rootroot rootroot 110222850 4月 29 20:05 mihomo-party-linux-1.7.3-amd64.deb*
drwx------ 4 rootroot rootroot 4096 2月 27 17:35 .mozilla/
drwxr-xr-x 2 rootroot rootroot 4096 2月 24 18:55 Music/
drwx------ 3 rootroot rootroot 4096 3月 7 11:04 .nv/
-rw-rw-r-- 1 rootroot rootroot 21127558215 4月 23 20:12 OK3588_Linux_fs_20250423_1853联想电脑versions吊舱-打包备份了.tgz
drwxr-xr-x 2 rootroot rootroot 12288 5月 5 08:59 Pictures/
drwx------ 3 rootroot rootroot 4096 3月 12 18:47 .pki/
-rw-r--r-- 1 rootroot rootroot 807 2月 24 18:43 .profile
drwxr-xr-x 2 rootroot rootroot 4096 2月 24 18:55 Public/
-rw------- 1 rootroot rootroot 7 3月 5 10:32 .python_history
-rw-r--r-- 1 rootroot rootroot 2 4月 25 17:01 .repo_.gitconfig.json
drwxr-xr-x 35 rootroot rootroot 4096 4月 10 09:23 RK3566_RK3568_Linux5.10_V1.2.0/
-rw-rw-r-- 1 rootroot rootroot 38944749824 4月 8 17:27 RK3566_RK3568_Linux5.10_V1.2.0_1716.tgz
-rw-rw-r-- 1 rootroot rootroot 32965716791 3月 28 16:07 RK3566_RK3568_Linux5.10_V1.2.0_20250328_1557编译完成.tgz
drwx------ 2 rootroot rootroot 4096 4月 24 18:36 RK3588+4800w/
-rwx------ 1 rootroot rootroot 11814295 4月 18 09:55 Rockchip_RK3568_TRM_Part1_V1.3-20220930P.PDF*
drwxrwxr-x 11 rootroot rootroot 4096 5月 5 10:50 sd-fuse_h3/
-rw-rw-r-- 1 rootroot rootroot 83043268 4月 30 16:16 sd-fuse_h3_1615.tgz
drwx------ 2 rootroot rootroot 12288 4月 30 14:15 \'sd-fuse_h3_README_cn.md at master · friendlyarm_sd-fuse_h3 · GitHub_files\'/
-rwx------ 1 rootroot rootroot 340689 4月 30 14:15 \'sd-fuse_h3_README_cn.md at master · friendlyarm_sd-fuse_h3 · GitHub.html\'*
-rwx------ 1 rootroot rootroot 1572589 4月 30 14:13 \'sd-fuse_h3_README_cn.md at master · friendlyarm_sd-fuse_h3 · GitHub.mhtml\'*
drwx------ 3 rootroot rootroot 4096 4月 24 17:09 snap/
drwxrwxrwx 34 rootroot rootroot 4096 4月 23 19:57 source/
-rw-rw-r-- 1 rootroot rootroot 53233512174 4月 23 11:16 source_20250423_1102自研的板子备份.tgz
-rw-rw-r-- 1 rootroot rootroot 39811535102 3月 12 14:31 source_rp3566_finish_20250312_1422.tgz
drwx------ 2 rootroot rootroot 4096 2月 25 09:04 .ssh/
-rw-r--r-- 1 rootroot rootroot 0 2月 25 09:05 .sudo_as_admin_successful
drwxrwxr-x 2 rootroot rootroot 4096 3月 12 18:47 \'Sunlogin Files\'/
drwxrwxr-x 3 rootroot rootroot 4096 5月 5 11:05 temp/
drwxr-xr-x 2 rootroot rootroot 4096 2月 24 18:55 Templates/
drwx------ 6 rootroot rootroot 4096 4月 7 12:05 .thunderbird/
drwxrwxr-x 3 rootroot rootroot 4096 4月 25 13:59 tmp/
-rwx------ 1 rootroot rootroot 1157627904 4月 28 10:59 ubuntu-14.04.6-desktop-amd64.iso*
-rwx------ 1 rootroot rootroot 2514124800 4月 29 13:48 ubuntu-18.04.6-desktop-amd64.iso*
-rwx------ 1 rootroot rootroot 2487 4月 24 11:21 \'Ubuntu Core.txt\'*
drwxrwxr-x 12 rootroot rootroot 4096 4月 29 09:47 version/
-rw-rw-r-- 1 rootroot rootroot 87106 4月 29 14:40 veula.txt
drwxr-xr-x 2 rootroot rootroot 4096 2月 24 18:55 Videos/
-rwx------ 1 rootroot rootroot 118163824 4月 28 17:00 \'virtualbox-7.1_7.1.8-168469~Ubuntu~focal_amd64版本Ubuntu 20.04.deb\'*
drwxr-xr-x 2 rootroot rootroot 4096 4月 30 19:06 .vmware/
drwxrwxr-x 4 rootroot rootroot 4096 4月 30 10:27 vmware/
-rwx------ 1 rootroot rootroot 175228594 4月 28 15:36 VMware-Player-16.1.0-17198959.x86_64.bundle*
-rwx------ 1 rootroot rootroot 461115120 4月 28 09:11 VMware-Workstation-Full-14.1.7-12989993.x86_64.bundle*
-rwx------ 1 rootroot rootroot 495325913 4月 28 09:09 VMware-Workstation-Full-15.1.0-13591040.x86_64.bundle*
-rwx------ 1 rootroot rootroot 548386581 4月 28 16:47 VMware-Workstation-Full-16.2.5-20904516.x86_64.bundle*
-rw-r--r-- 1 rootroot rootroot 171 3月 28 13:01 .wget-hsts
drwxrwxr-x 8 rootroot rootroot 4096 3月 7 11:53 whisper/
-rw------- 1 rootroot rootroot 256 5月 5 11:12 .Xauthority
-rwx------ 1 rootroot rootroot 4688 4月 16 10:47 修改说明.txt*
drwx------ 2 rootroot rootroot 4096 3月 22 14:59 摄像头/
-rwx------ 1 rootroot rootroot 3385 4月 30 14:12 新建文本文档.txt*
-rwx------ 1 rootroot rootroot 3917 4月 14 11:08 飞凌OK3588_android_autostart.patch*
rootroot@rootroot-X99-Turbo:~$
rootroot@rootroot-X99-Turbo:~$ cd friendlywrt-h3/
rootroot@rootroot-X99-Turbo:~/friendlywrt-h3$ ll
total 44
drwxrwxr-x 11 rootroot rootroot 4096 4月 25 17:04 ./
drwxr-xr-x 43 rootroot rootroot 4096 5月 5 11:12 ../
lrwxrwxrwx 1 rootroot rootroot 16 4月 25 17:01 build.sh -> scripts/build.sh*
drwxrwxr-x 3 rootroot rootroot 4096 4月 25 17:01 configs/
lrwxrwxrwx 1 rootroot rootroot 41 4月 25 17:04 .current_config.mk -> device/friendlyelec/h3/nanopi_neo_core.mk
drwxrwxr-x 3 rootroot rootroot 4096 4月 25 17:01 device/
drwxrwxr-x 18 rootroot rootroot 4096 4月 25 18:13 friendlywrt/
drwxrwxr-x 28 rootroot rootroot 4096 4月 25 17:35 kernel/
lrwxrwxrwx 1 rootroot rootroot 19 4月 25 17:01 out -> scripts/sd-fuse/out/
drwxrwxr-x 2 rootroot rootroot 4096 4月 17 2020 pre-download/
drwxrwxr-x 7 rootroot rootroot 4096 4月 17 2020 .repo/
drwxrwxr-x 4 rootroot rootroot 4096 4月 25 17:01 scripts/
drwxrwxr-x 5 rootroot rootroot 4096 4月 25 17:01 toolchain/
drwxrwxr-x 27 rootroot rootroot 4096 4月 25 17:22 u-boot/
rootroot@rootroot-X99-Turbo:~/friendlywrt-h3$
rootroot@rootroot-X99-Turbo:~/friendlywrt-h3$ ll *.sh
lrwxrwxrwx 1 rootroot rootroot 16 4月 25 17:01 build.sh -> scripts/build.sh*
rootroot@rootroot-X99-Turbo:~/friendlywrt-h3$
rootroot@rootroot-X99-Turbo:~/friendlywrt-h3$ ./build.sh
USAGE: ./build.sh
# select board:
./build.sh nanopi_r1.mk
./build.sh zeropi.mk
./build.sh nanopi_neo_s.mk
./build.sh nanopi_neo.mk
./build.sh nanopi_neo_core.mk
./build.sh nanopi_r1s_h3.mk
./build.sh nanopi_duo2.mk
./build.sh nanopi_m1_plus.mk
./build.sh nanopi_m1.mk
./build.sh nanopi_neo_air.mk
# build module:
./build.sh all -build all
./build.sh uboot -build uboot only
./build.sh kernel -build kernel only
./build.sh friendlywrt -build friendlywrt rootfs only
./build.sh sd-img -pack sd-card image, used to create bootable SD card
./build.sh emmc-img -pack sd-card image, used to write friendlywrt to emmc
# clean
./build.sh cleanall
rootroot@rootroot-X99-Turbo:~/friendlywrt-h3$
rootroot@rootroot-X99-Turbo:~/friendlywrt-h3$ ll
total 44
drwxrwxr-x 11 rootroot rootroot 4096 4月 25 17:04 ./
drwxr-xr-x 43 rootroot rootroot 4096 5月 5 11:12 ../
lrwxrwxrwx 1 rootroot rootroot 16 4月 25 17:01 build.sh -> scripts/build.sh*
drwxrwxr-x 3 rootroot rootroot 4096 4月 25 17:01 configs/
lrwxrwxrwx 1 rootroot rootroot 41 4月 25 17:04 .current_config.mk -> device/friendlyelec/h3/nanopi_neo_core.mk
drwxrwxr-x 3 rootroot rootroot 4096 4月 25 17:01 device/
drwxrwxr-x 18 rootroot rootroot 4096 4月 25 18:13 friendlywrt/
drwxrwxr-x 28 rootroot rootroot 4096 4月 25 17:35 kernel/
lrwxrwxrwx 1 rootroot rootroot 19 4月 25 17:01 out -> scripts/sd-fuse/out/
drwxrwxr-x 2 rootroot rootroot 4096 4月 17 2020 pre-download/
drwxrwxr-x 7 rootroot rootroot 4096 4月 17 2020 .repo/
drwxrwxr-x 4 rootroot rootroot 4096 4月 25 17:01 scripts/
drwxrwxr-x 5 rootroot rootroot 4096 4月 25 17:01 toolchain/
drwxrwxr-x 27 rootroot rootroot 4096 4月 25 17:22 u-boot/
rootroot@rootroot-X99-Turbo:~/friendlywrt-h3$
rootroot@rootroot-X99-Turbo:~/friendlywrt-h3$
rootroot@rootroot-X99-Turbo:~/friendlywrt-h3$
rootroot@rootroot-X99-Turbo:~/friendlywrt-h3$ ./build.sh friendlywrt
[INFO]: installing toolchain: aarch-linux-gcc 6.4
[sudo] password for rootroot:
==========Start build friendlywrt==========
TARGET_FRIENDLYWRT_CONFIG=config_h3
FRIENDLYWRT_SRC=friendlywrt
=========================================
============Start building friendlywrt============
TARGET_FRIENDLYWRT_CONFIG = config_h3
FRIENDLYWRT_SRC_PATHNAME = friendlywrt
==========================================
Updating feed \'packages\' from \'https://github.com/friendlyarm/friendlywrt_project_packages^5b22f3f59c03412200fe4815d833943f953edf2b\' ...
Create index file \'./feeds/packages.index\'
xargs: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by xargs)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33\' not found (required by sed)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by sed)
awk: include/scan.awk: line 21: function asort never defined
awk: include/scan.awk: line 21: function asort never defined
find: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33\' not found (required by find)
find: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by find)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33\' not found (required by sed)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by sed)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33\' not found (required by sed)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by sed)
mkhash: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by mkhash)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by sed)
mkhash: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by mkhash)
Collecting package info: done
xargs: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by xargs)
find: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33\' not found (required by find)
find: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by find)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33\' not found (required by sed)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by sed)
awk: include/scan.awk: line 21: function asort never defined
awk: include/scan.awk: line 21: function asort never defined
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33\' not found (required by sed)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by sed)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33\' not found (required by sed)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by sed)
mkhash: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by mkhash)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by sed)
mkhash: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by mkhash)
Collecting target info: done
Updating feed \'luci\' from \'https://github.com/friendlyarm/friendlywrt_project_luci^28fc0fa6d90a8eb3db0c93e749ed5aefdbfc4f8a\' ...
Create index file \'./feeds/luci.index\'
xargs: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by xargs)
find: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33\' not found (required by find)
find: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by find)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33\' not found (required by sed)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by sed)
awk: include/scan.awk: line 21: function asort never defined
awk: include/scan.awk: line 21: function asort never defined
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33\' not found (required by sed)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by sed)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33\' not found (required by sed)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by sed)
mkhash: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by mkhash)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by sed)
mkhash: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by mkhash)
Collecting package info: done
xargs: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by xargs)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33\' not found (required by sed)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by sed)
find: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33\' not found (required by find)
find: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by find)
awk: include/scan.awk: line 21: function asort never defined
awk: include/scan.awk: line 21: function asort never defined
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33\' not found (required by sed)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by sed)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33\' not found (required by sed)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by sed)
mkhash: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by mkhash)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by sed)
mkhash: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by mkhash)
Collecting target info: done
Updating feed \'routing\' from \'https://git.openwrt.org/feed/routing.git^f1b0476edc5486793e098fe83089054bb2941663\' ...
Create index file \'./feeds/routing.index\'
xargs: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by xargs)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33\' not found (required by sed)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by sed)
find: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33\' not found (required by find)
find: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by find)
awk: include/scan.awk: line 21: function asort never defined
awk: include/scan.awk: line 21: function asort never defined
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33\' not found (required by sed)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by sed)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33\' not found (required by sed)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by sed)
mkhash: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by mkhash)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by sed)
mkhash: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by mkhash)
Collecting package info: done
xargs: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by xargs)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33\' not found (required by sed)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by sed)
find: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33\' not found (required by find)
find: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by find)
awk: include/scan.awk: line 21: function asort never defined
awk: include/scan.awk: line 21: function asort never defined
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33\' not found (required by sed)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by sed)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33\' not found (required by sed)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by sed)
mkhash: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by mkhash)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by sed)
mkhash: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by mkhash)
Collecting target info: done
Updating feed \'telephony\' from \'https://git.openwrt.org/feed/telephony.git^6f95d6ab3f359ee2ce81c20522700937424d1591\' ...
Create index file \'./feeds/telephony.index\'
xargs: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by xargs)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33\' not found (required by sed)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by sed)
find: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33\' not found (required by find)
find: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by find)
awk: include/scan.awk: line 21: function asort never defined
awk: include/scan.awk: line 21: function asort never defined
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33\' not found (required by sed)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by sed)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33\' not found (required by sed)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by sed)
mkhash: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by mkhash)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by sed)
mkhash: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by mkhash)
Collecting package info: done
xargs: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by xargs)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33\' not found (required by sed)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by sed)
find: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33\' not found (required by find)
find: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by find)
awk: include/scan.awk: line 21: function asort never defined
awk: include/scan.awk: line 21: function asort never defined
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33\' not found (required by sed)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by sed)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33\' not found (required by sed)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by sed)
mkhash: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by mkhash)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by sed)
mkhash: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by mkhash)
Collecting target info: done
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33\' not found (required by sed)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by sed)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33\' not found (required by sed)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by sed)
xargs: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by xargs)
find: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33\' not found (required by find)
find: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by find)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33\' not found (required by sed)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by sed)
awk: include/scan.awk: line 21: function asort never defined
awk: include/scan.awk: line 21: function asort never defined
mkhash: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by mkhash)
xargs: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by xargs)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33\' not found (required by sed)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by sed)
find: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33\' not found (required by find)
find: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by find)
awk: include/scan.awk: line 21: function asort never defined
awk: include/scan.awk: line 21: function asort never defined
mkhash: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by mkhash)
Installing all packages from feed packages.
Installing all packages from feed luci.
Installing all packages from feed routing.
Installing all packages from feed telephony.
using .config file
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33\' not found (required by sed)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by sed)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33\' not found (required by sed)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by sed)
xargs: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by xargs)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33\' not found (required by sed)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by sed)
find: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33\' not found (required by find)
find: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by find)
awk: include/scan.awk: line 21: function asort never defined
awk: include/scan.awk: line 21: function asort never defined
mkhash: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by mkhash)
xargs: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by xargs)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33\' not found (required by sed)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by sed)
find: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33\' not found (required by find)
find: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by find)
awk: include/scan.awk: line 21: function asort never defined
awk: include/scan.awk: line 21: function asort never defined
mkhash: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by mkhash)
make[1] tools/download
make[2] target/prereq
make[2] -C tools/sstrip download
make[2] -C tools/libelf download
make[2] -C tools/patch-image download
make[2] -C tools/padjffs2 download
make[2] -C tools/autoconf download
make[2] -C tools/mpc download
make[2] -C tools/gmp download
make[2] -C tools/libtool download
make[2] -C tools/flex download
make[2] -C tools/mklibs download
make[2] -C tools/automake download
make[2] -C tools/pkg-config download
make[2] -C tools/quilt download
make[2] -C tools/zlib download
make[2] -C tools/expat download
make[2] -C tools/bison download
make[2] -C tools/mkimage download
make[2] -C tools/mpfr download
make[2] -C tools/mtd-utils download
make[2] -C tools/m4 download
make[2] -C tools/e2fsprogs download
make[2] -C tools/firmware-utils download
make[3] -C target/linux prereq
make[2] -C tools/missing-macros download
make[2] -C tools/scons download
make[2] -C tools/mm-macros download
make[2] -C tools/findutils download
make[2] -C tools/bc download
make[2] -C tools/mtools download
make[2] -C tools/gengetopt download
make[2] -C tools/libressl download
make[2] -C tools/b43-tools download
make[2] -C tools/flock download
make[2] -C tools/squashfskit4 download
make[2] -C tools/patchelf download
make[2] -C tools/lzma download
make[2] -C tools/dosfstools download
make[2] -C tools/cmake download
make[2] -C tools/tar download
make[2] -C tools/zip download
make[2] -C tools/patch download
make[2] -C tools/xz download
make[2] -C tools/sed download
make[2] -C tools/ccache download
make[2] -C tools/make-ext4fs download
make[1] toolchain/download
make[2] -C toolchain/gcc/final download
make[2] -C toolchain/kernel-headers download
make[2] -C toolchain/musl download
make[2] -C toolchain/gdb download
make[2] -C toolchain/binutils download
make[2] -C toolchain/gcc/initial download
make[2] -C toolchain/fortify-headers download
make[1] package/download
make[1] target/download
make[2] -C target/linux download
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33\' not found (required by sed)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by sed)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33\' not found (required by sed)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by sed)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33\' not found (required by sed)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by sed)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33\' not found (required by sed)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by sed)
xargs: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by xargs)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33\' not found (required by sed)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by sed)
find: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33\' not found (required by find)
find: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by find)
awk: include/scan.awk: line 21: function asort never defined
awk: include/scan.awk: line 21: function asort never defined
mkhash: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by mkhash)
xargs: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by xargs)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33\' not found (required by sed)
sed: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by sed)
find: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33\' not found (required by find)
find: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by find)
awk: include/scan.awk: line 21: function asort never defined
awk: include/scan.awk: line 21: function asort never defined
mkhash: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by mkhash)
find: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33\' not found (required by find)
find: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by find)
mkhash: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by mkhash)
find: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33\' not found (required by find)
find: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by find)
mkhash: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by mkhash)
mkhash: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by mkhash)
find: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33\' not found (required by find)
find: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by find)
mkhash: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by mkhash)
find: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33\' not found (required by find)
find: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by find)
find: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33\' not found (required by find)
find: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by find)
mkhash: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by mkhash)
time: target/linux/prereq#0.13#0.05#0.19
make[1]: Entering directory \'/home/rootroot/friendlywrt-h3/friendlywrt\'
cd \"/home/rootroot/friendlywrt-h3/friendlywrt\"; git log --format=%h -1 toolchain > /home/rootroot/friendlywrt-h3/friendlywrt/tmp/.ver_check
cmp -s /home/rootroot/friendlywrt-h3/friendlywrt/tmp/.ver_check /home/rootroot/friendlywrt-h3/friendlywrt/staging_dir/toolchain-arm_cortex-a7+neon-vfpv4_gcc-7.5.0_musl_eabi/stamp/.ver_check || { \\
rm -rf /home/rootroot/friendlywrt-h3/friendlywrt/build_dir/target-arm_cortex-a7+neon-vfpv4_musl_eabi /home/rootroot/friendlywrt-h3/friendlywrt/staging_dir/target-arm_cortex-a7+neon-vfpv4_musl_eabi /home/rootroot/friendlywrt-h3/friendlywrt/staging_dir/toolchain-arm_cortex-a7+neon-vfpv4_gcc-7.5.0_musl_eabi /home/rootroot/friendlywrt-h3/friendlywrt/build_dir/toolchain-arm_cortex-a7+neon-vfpv4_gcc-7.5.0_musl_eabi; \\
mkdir -p /home/rootroot/friendlywrt-h3/friendlywrt/staging_dir/toolchain-arm_cortex-a7+neon-vfpv4_gcc-7.5.0_musl_eabi/stamp; \\
mv /home/rootroot/friendlywrt-h3/friendlywrt/tmp/.ver_check /home/rootroot/friendlywrt-h3/friendlywrt/staging_dir/toolchain-arm_cortex-a7+neon-vfpv4_gcc-7.5.0_musl_eabi/stamp/.ver_check; \\
}
make[2]: Entering directory \'/home/rootroot/friendlywrt-h3/friendlywrt\'
make[2]: Entering directory \'/home/rootroot/friendlywrt-h3/friendlywrt\'
cd \"/home/rootroot/friendlywrt-h3/friendlywrt\"; git log --format=%h -1 toolchain > /home/rootroot/friendlywrt-h3/friendlywrt/tmp/.ver_check
cd \"/home/rootroot/friendlywrt-h3/friendlywrt\"; git log --format=%h -1 toolchain > /home/rootroot/friendlywrt-h3/friendlywrt/tmp/.ver_check
cmp -s /home/rootroot/friendlywrt-h3/friendlywrt/tmp/.ver_check /home/rootroot/friendlywrt-h3/friendlywrt/staging_dir/toolchain-arm_cortex-a7+neon-vfpv4_gcc-7.5.0_musl_eabi/stamp/.ver_check || { \\
rm -rf /home/rootroot/friendlywrt-h3/friendlywrt/build_dir/target-arm_cortex-a7+neon-vfpv4_musl_eabi /home/rootroot/friendlywrt-h3/friendlywrt/staging_dir/target-arm_cortex-a7+neon-vfpv4_musl_eabi /home/rootroot/friendlywrt-h3/friendlywrt/staging_dir/toolchain-arm_cortex-a7+neon-vfpv4_gcc-7.5.0_musl_eabi /home/rootroot/friendlywrt-h3/friendlywrt/build_dir/toolchain-arm_cortex-a7+neon-vfpv4_gcc-7.5.0_musl_eabi; \\
mkdir -p /home/rootroot/friendlywrt-h3/friendlywrt/staging_dir/toolchain-arm_cortex-a7+neon-vfpv4_gcc-7.5.0_musl_eabi/stamp; \\
mv /home/rootroot/friendlywrt-h3/friendlywrt/tmp/.ver_check /home/rootroot/friendlywrt-h3/friendlywrt/staging_dir/toolchain-arm_cortex-a7+neon-vfpv4_gcc-7.5.0_musl_eabi/stamp/.ver_check; \\
}
+ mkdir -p /home/rootroot/friendlywrt-h3/friendlywrt/staging_dir/target-arm_cortex-a7+neon-vfpv4_musl_eabi
cmp -s /home/rootroot/friendlywrt-h3/friendlywrt/tmp/.ver_check /home/rootroot/friendlywrt-h3/friendlywrt/staging_dir/toolchain-arm_cortex-a7+neon-vfpv4_gcc-7.5.0_musl_eabi/stamp/.ver_check || { \\
rm -rf /home/rootroot/friendlywrt-h3/friendlywrt/build_dir/target-arm_cortex-a7+neon-vfpv4_musl_eabi /home/rootroot/friendlywrt-h3/friendlywrt/staging_dir/target-arm_cortex-a7+neon-vfpv4_musl_eabi /home/rootroot/friendlywrt-h3/friendlywrt/staging_dir/toolchain-arm_cortex-a7+neon-vfpv4_gcc-7.5.0_musl_eabi /home/rootroot/friendlywrt-h3/friendlywrt/build_dir/toolchain-arm_cortex-a7+neon-vfpv4_gcc-7.5.0_musl_eabi; \\
mkdir -p /home/rootroot/friendlywrt-h3/friendlywrt/staging_dir/toolchain-arm_cortex-a7+neon-vfpv4_gcc-7.5.0_musl_eabi/stamp; \\
mv /home/rootroot/friendlywrt-h3/friendlywrt/tmp/.ver_check /home/rootroot/friendlywrt-h3/friendlywrt/staging_dir/toolchain-arm_cortex-a7+neon-vfpv4_gcc-7.5.0_musl_eabi/stamp/.ver_check; \\
}
+ mkdir -p /home/rootroot/friendlywrt-h3/friendlywrt/staging_dir/host
+ cd /home/rootroot/friendlywrt-h3/friendlywrt/staging_dir/target-arm_cortex-a7+neon-vfpv4_musl_eabi
+ mkdir -p bin lib include stamp
+ cd /home/rootroot/friendlywrt-h3/friendlywrt/staging_dir/host
+ mkdir -p bin lib include stamp
mkdir -p /home/rootroot/friendlywrt-h3/friendlywrt/build_dir/target-arm_cortex-a7+neon-vfpv4_musl_eabi/stamp
rm -rf /home/rootroot/friendlywrt-h3/friendlywrt/staging_dir/target-arm_cortex-a7+neon-vfpv4_musl_eabi/root-sunxi
mkdir -p /home/rootroot/friendlywrt-h3/friendlywrt/build_dir/host/stamp /home/rootroot/friendlywrt-h3/friendlywrt/staging_dir/host/include/sys
touch /home/rootroot/friendlywrt-h3/friendlywrt/staging_dir/target-arm_cortex-a7+neon-vfpv4_musl_eabi/.prepared
install -m0644 /home/rootroot/friendlywrt-h3/friendlywrt/tools/include/*.h /home/rootroot/friendlywrt-h3/friendlywrt/staging_dir/host/include/
install -m0644 /home/rootroot/friendlywrt-h3/friendlywrt/tools/include/sys/*.h /home/rootroot/friendlywrt-h3/friendlywrt/staging_dir/host/include/sys/
ln -sf lib /home/rootroot/friendlywrt-h3/friendlywrt/staging_dir/host/lib64
touch /home/rootroot/friendlywrt-h3/friendlywrt/staging_dir/host/.prepared
make[2]: Leaving directory \'/home/rootroot/friendlywrt-h3/friendlywrt\'
make[3]: Entering directory \'/home/rootroot/friendlywrt-h3/friendlywrt/tools/flock\'
mkhash: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by mkhash)
find: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33\' not found (required by find)
find: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by find)
/home/rootroot/friendlywrt-h3/friendlywrt/staging_dir/host/bin/mkhash: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by /home/rootroot/friendlywrt-h3/friendlywrt/staging_dir/host/bin/mkhash)
mkhash: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by mkhash)
find: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33\' not found (required by find)
find: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by find)
/home/rootroot/friendlywrt-h3/friendlywrt/staging_dir/host/bin/mkhash: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by /home/rootroot/friendlywrt-h3/friendlywrt/staging_dir/host/bin/mkhash)
mkhash: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by mkhash)
find: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33\' not found (required by find)
find: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by find)
/home/rootroot/friendlywrt-h3/friendlywrt/staging_dir/host/bin/mkhash: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by /home/rootroot/friendlywrt-h3/friendlywrt/staging_dir/host/bin/mkhash)
mkhash: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by mkhash)
find: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33\' not found (required by find)
find: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by find)
/home/rootroot/friendlywrt-h3/friendlywrt/staging_dir/host/bin/mkhash: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by /home/rootroot/friendlywrt-h3/friendlywrt/staging_dir/host/bin/mkhash)
touch /home/rootroot/friendlywrt-h3/friendlywrt/build_dir/host/flock/.prepared_
(cd /home/rootroot/friendlywrt-h3/friendlywrt/build_dir/host/flock/; if [ -x configure ]; then cp -fpR /home/rootroot/friendlywrt-h3/friendlywrt/scripts/config.{guess,sub} /home/rootroot/friendlywrt-h3/friendlywrt/build_dir/host/flock// && CC=\"gcc\" CFLAGS=\"-O2 -I/home/rootroot/friendlywrt-h3/friendlywrt/staging_dir/host/include \" CXX=\"g++\" CPPFLAGS=\"-I/home/rootroot/friendlywrt-h3/friendlywrt/staging_dir/host/include \" LDFLAGS=\"-L/home/rootroot/friendlywrt-h3/friendlywrt/staging_dir/host/lib \" CONFIG_SHELL=\"/usr/bin/env bash\" bash ./configure --target=x86_64-pc-linux-gnu --host=x86_64-pc-linux-gnu --build=x86_64-pc-linux-gnu --program-prefix=\"\" --program-suffix=\"\" --prefix=/home/rootroot/friendlywrt-h3/friendlywrt/staging_dir/host --exec-prefix=/home/rootroot/friendlywrt-h3/friendlywrt/staging_dir/host --sysconfdir=/home/rootroot/friendlywrt-h3/friendlywrt/staging_dir/host/etc --localstatedir=/home/rootroot/friendlywrt-h3/friendlywrt/staging_dir/host/var --sbindir=/home/rootroot/friendlywrt-h3/friendlywrt/staging_dir/host/bin ; fi )
touch /home/rootroot/friendlywrt-h3/friendlywrt/build_dir/host/flock/.configured
mkdir -p /home/rootroot/friendlywrt-h3/friendlywrt/build_dir/host/flock
gcc -O2 -I/home/rootroot/friendlywrt-h3/friendlywrt/staging_dir/host/include -o /home/rootroot/friendlywrt-h3/friendlywrt/build_dir/host/flock/flock src/flock.c
touch /home/rootroot/friendlywrt-h3/friendlywrt/build_dir/host/flock/.built
install -m0755 /home/rootroot/friendlywrt-h3/friendlywrt/build_dir/host/flock/flock /home/rootroot/friendlywrt-h3/friendlywrt/staging_dir/host/bin/
mkdir -p /home/rootroot/friendlywrt-h3/friendlywrt/staging_dir/host/stamp
touch /home/rootroot/friendlywrt-h3/friendlywrt/build_dir/host/flock/.built
touch /home/rootroot/friendlywrt-h3/friendlywrt/staging_dir/host/stamp/.flock_installed
find /home/rootroot/friendlywrt-h3/friendlywrt/build_dir/host/flock -mindepth 1 -maxdepth 1 -not \'(\' -type f -and -name \'.*\' -and -size 0 \')\' | xargs -r rm -rf
xargs: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by xargs)
find: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33\' not found (required by find)
find: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34\' not found (required by find)
make[3]: *** [Makefile:25: host-compile] Error 1
make[3]: Leaving directory \'/home/rootroot/friendlywrt-h3/friendlywrt/tools/flock\'
time: tools/flock/compile#0.20#0.06#0.31
make[2]: *** [tools/Makefile:159: tools/flock/compile] Error 2
make[2]: Leaving directory \'/home/rootroot/friendlywrt-h3/friendlywrt\'
make[1]: *** [tools/Makefile:155: /home/rootroot/friendlywrt-h3/friendlywrt/staging_dir/target-arm_cortex-a7+neon-vfpv4_musl_eabi/stamp/.tools_compile_yyyyynnyyyynyyyyynyynnyyyynyyyyyyyyyyyyyyynyynynnyyynnyyy] Error 2
make[1]: Leaving directory \'/home/rootroot/friendlywrt-h3/friendlywrt\'
make: *** [/home/rootroot/friendlywrt-h3/friendlywrt/include/toplevel.mk:227: world] Error 2
Command exited with non-zero status 2
you take 0:12.76 to build friendlywrt
rootroot@rootroot-X99-Turbo:~/friendlywrt-h3$
rootroot@rootroot-X99-Turbo:~/friendlywrt-h3$
rootroot@rootroot-X99-Turbo:~/friendlywrt-h3$
rootroot@rootroot-X99-Turbo:~/friendlywrt-h3$ ./build.sh friendlywrt^C
rootroot@rootroot-X99-Turbo:~/friendlywrt-h3$
rootroot@rootroot-X99-Turbo:~/friendlywrt-h3$
rootroot@rootroot-X99-Turbo:~/friendlywrt-h3$ cd /etc/apt/
rootroot@rootroot-X99-Turbo:/etc/apt$
rootroot@rootroot-X99-Turbo:/etc/apt$ ll
total 40
drwxr-xr-x 7 root root 4096 2月 24 18:50 ./
drwxr-xr-x 147 root root 12288 4月 30 17:46 ../
drwxr-xr-x 2 root root 4096 2月 25 09:25 apt.conf.d/
drwxr-xr-x 2 root root 4096 4月 9 2020 auth.conf.d/
drwxr-xr-x 2 root root 4096 4月 9 2020 preferences.d/
-rw-rw-r-- 1 root root 3158 2月 24 18:50 sources.list
drwxr-xr-x 2 root root 4096 4月 9 2020 sources.list.d/
drwxr-xr-x 2 root root 4096 3月 16 2023 trusted.gpg.d/
rootroot@rootroot-X99-Turbo:/etc/apt$
rootroot@rootroot-X99-Turbo:/etc/apt$ sudo cp sources.list sources.list.bak1
[sudo] password for rootroot:
rootroot@rootroot-X99-Turbo:/etc/apt$
rootroot@rootroot-X99-Turbo:/etc/apt$ ll
total 44
drwxr-xr-x 7 root root 4096 5月 5 11:45 ./
drwxr-xr-x 147 root root 12288 4月 30 17:46 ../
drwxr-xr-x 2 root root 4096 2月 25 09:25 apt.conf.d/
drwxr-xr-x 2 root root 4096 4月 9 2020 auth.conf.d/
drwxr-xr-x 2 root root 4096 4月 9 2020 preferences.d/
-rw-rw-r-- 1 root root 3158 2月 24 18:50 sources.list
-rw-r--r-- 1 root root 3158 5月 5 11:45 sources.list.bak1
drwxr-xr-x 2 root root 4096 4月 9 2020 sources.list.d/
drwxr-xr-x 2 root root 4096 3月 16 2023 trusted.gpg.d/
rootroot@rootroot-X99-Turbo:/etc/apt$
rootroot@rootroot-X99-Turbo:/etc/apt$ sudo chmod 777 sources.list
rootroot@rootroot-X99-Turbo:/etc/apt$
rootroot@rootroot-X99-Turbo:/etc/apt$ ll
total 44
drwxr-xr-x 7 root root 4096 5月 5 11:45 ./
drwxr-xr-x 147 root root 12288 4月 30 17:46 ../
drwxr-xr-x 2 root root 4096 2月 25 09:25 apt.conf.d/
drwxr-xr-x 2 root root 4096 4月 9 2020 auth.conf.d/
drwxr-xr-x 2 root root 4096 4月 9 2020 preferences.d/
-rwxrwxrwx 1 root root 3158 2月 24 18:50 sources.list*
-rw-r--r-- 1 root root 3158 5月 5 11:45 sources.list.bak1
drwxr-xr-x 2 root root 4096 4月 9 2020 sources.list.d/
drwxr-xr-x 2 root root 4096 3月 16 2023 trusted.gpg.d/
rootroot@rootroot-X99-Turbo:/etc/apt$
rootroot@rootroot-X99-Turbo:/etc/apt$ sudo echo \"deb http://th.archive.ubuntu.com/ubuntu jammy main\" >> sources.list
rootroot@rootroot-X99-Turbo:/etc/apt$
rootroot@rootroot-X99-Turbo:/etc/apt$ diff sources.list sources.list.bak1
58d57
< deb http://th.archive.ubuntu.com/ubuntu jammy main
rootroot@rootroot-X99-Turbo:/etc/apt$
rootroot@rootroot-X99-Turbo:/etc/apt$
rootroot@rootroot-X99-Turbo:/etc/apt$
rootroot@rootroot-X99-Turbo:/etc/apt$
rootroot@rootroot-X99-Turbo:/etc/apt$
rootroot@rootroot-X99-Turbo:/etc/apt$
rootroot@rootroot-X99-Turbo:/etc/apt$ sudo apt update
Get:2 http://th.archive.ubuntu.com/ubuntu jammy InRelease [270 kB]
Get:3 http://security.ubuntu.com/ubuntu focal-security InRelease [128 kB]
Get:6 http://th.archive.ubuntu.com/ubuntu jammy/main i386 Packages [1,040 kB]
Get:7 http://th.archive.ubuntu.com/ubuntu jammy/main amd64 Packages [1,395 kB]
Get:8 http://th.archive.ubuntu.com/ubuntu jammy/main Translation-en [510 kB]
Get:9 http://th.archive.ubuntu.com/ubuntu jammy/main amd64 DEP-11 Metadata [423 kB]
Get:10 http://th.archive.ubuntu.com/ubuntu jammy/main DEP-11 48x48 Icons [100.0 kB]
Get:11 http://th.archive.ubuntu.com/ubuntu jammy/main DEP-11 64x64 Icons [148 kB]
Get:12 http://th.archive.ubuntu.com/ubuntu jammy/main DEP-11 64x64@2 Icons [15.8 kB]
Get:13 http://th.archive.ubuntu.com/ubuntu jammy/main amd64 c-n-f Metadata [30.3 kB]
Get:14 http://security.ubuntu.com/ubuntu focal-security/main amd64 Packages [3,505 kB]
Get:15 http://security.ubuntu.com/ubuntu focal-security/main i386 Packages [869 kB]
Get:16 http://security.ubuntu.com/ubuntu focal-security/main Translation-en [510 kB]
Get:17 http://security.ubuntu.com/ubuntu focal-security/main amd64 DEP-11 Metadata [74.7 kB]
Get:18 http://security.ubuntu.com/ubuntu focal-security/main DEP-11 48x48 Icons [27.5 kB]
Get:19 http://security.ubuntu.com/ubuntu focal-security/main DEP-11 64x64 Icons [47.5 kB]
Get:20 http://security.ubuntu.com/ubuntu focal-security/main amd64 c-n-f Metadata [14.4 kB]
Get:21 http://security.ubuntu.com/ubuntu focal-security/restricted i386 Packages [40.5 kB]
Get:22 http://security.ubuntu.com/ubuntu focal-security/restricted amd64 Packages [3,626 kB]
Get:23 http://security.ubuntu.com/ubuntu focal-security/restricted Translation-en [508 kB]
Get:24 http://security.ubuntu.com/ubuntu focal-security/restricted amd64 DEP-11 Metadata [212 B]
Get:25 http://security.ubuntu.com/ubuntu focal-security/restricted amd64 c-n-f Metadata [584 B]
Get:26 http://security.ubuntu.com/ubuntu focal-security/universe i386 Packages [697 kB]
Get:27 http://security.ubuntu.com/ubuntu focal-security/universe amd64 Packages [1,040 kB]
Get:28 http://security.ubuntu.com/ubuntu focal-security/universe Translation-en [220 kB]
Get:29 http://security.ubuntu.com/ubuntu focal-security/universe amd64 DEP-11 Metadata [160 kB]
Get:30 http://security.ubuntu.com/ubuntu focal-security/universe amd64 c-n-f Metadata [22.4 kB]
Get:31 http://security.ubuntu.com/ubuntu focal-security/multiverse amd64 Packages [26.6 kB]
Get:32 http://security.ubuntu.com/ubuntu focal-security/multiverse i386 Packages [7,204 B]
Get:33 http://security.ubuntu.com/ubuntu focal-security/multiverse Translation-en [6,448 B]
Get:34 http://security.ubuntu.com/ubuntu focal-security/multiverse amd64 DEP-11 Metadata [940 B]
Get:35 http://security.ubuntu.com/ubuntu focal-security/multiverse amd64 c-n-f Metadata [604 B]
Hit:1 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal InRelease
Get:4 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates InRelease [128 kB]
Get:5 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-backports InRelease [128 kB]
Get:36 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 Packages [3,920 kB]
Get:37 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main i386 Packages [1,108 kB]
Get:38 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main Translation-en [595 kB]
Get:39 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 DEP-11 Metadata [276 kB]
Get:40 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main DEP-11 48x48 Icons [64.2 kB]
Get:41 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main DEP-11 64x64 Icons [103 kB]
Get:42 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/main amd64 c-n-f Metadata [18.0 kB]
Get:43 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/restricted i386 Packages [44.1 kB]
Get:44 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/restricted amd64 Packages [3,854 kB]
Get:45 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/restricted Translation-en [539 kB]
Get:46 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/restricted amd64 DEP-11 Metadata [212 B]
Get:47 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/restricted amd64 c-n-f Metadata [604 B]
Get:48 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/universe amd64 Packages [1,262 kB]
Get:49 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/universe i386 Packages [823 kB]
Get:50 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/universe Translation-en [303 kB]
Get:51 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/universe amd64 DEP-11 Metadata [446 kB]
Get:52 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/universe amd64 c-n-f Metadata [29.3 kB]
Get:53 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/multiverse i386 Packages [8,440 B]
Get:54 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/multiverse amd64 Packages [29.7 kB]
Get:55 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/multiverse Translation-en [8,316 B]
Get:56 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/multiverse amd64 DEP-11 Metadata [940 B]
Get:57 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-updates/multiverse amd64 c-n-f Metadata [688 B]
Get:58 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-backports/main amd64 DEP-11 Metadata [7,984 B]
Get:59 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-backports/restricted amd64 DEP-11 Metadata [216 B]
Get:60 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-backports/universe amd64 DEP-11 Metadata [30.5 kB]
Get:61 http://mirrors.tuna.tsinghua.edu.cn/ubuntu focal-backports/multiverse amd64 DEP-11 Metadata [212 B]
Fetched 29.2 MB in 24s (1,235 kB/s)
Reading package lists... Done
Building dependency tree
Reading state information... Done
1650 packages can be upgraded. Run \'apt list --upgradable\' to see them.
rootroot@rootroot-X99-Turbo:/etc/apt$
rootroot@rootroot-X99-Turbo:/etc/apt$
rootroot@rootroot-X99-Turbo:/etc/apt$ sudo apt install libc6
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following packages were automatically installed and are no longer required:
chromium-codecs-ffmpeg-extra gstreamer1.0-vaapi libgstreamer-plugins-bad1.0-0 libjs-underscore libnvidia-cfg1-535 libnvidia-common-535 libnvidia-decode-535 libnvidia-encode-535 libnvidia-extra-535 libnvidia-fbc1-535
libnvidia-gl-535 libva-wayland2 libx11-xcb1:i386 libxnvctrl0 nvidia-compute-utils-535 nvidia-kernel-source-535 nvidia-settings nvidia-utils-535 screen-resolution-extra xserver-xorg-video-nvidia-535
Use \'sudo apt autoremove\' to remove them.
The following additional packages will be installed:
fakeroot libc-bin libc-dev-bin libc6-dbg libc6-dev libc6-dev-i386 libc6-dev-x32 libc6-i386 libc6-x32 libfakeroot libnsl-dev libnsl2 libnss-nis libnss-nisplus libtirpc-common libtirpc-dev libtirpc3 locales rpcsvc-proto
Suggested packages:
glibc-doc
Recommended packages:
libc-devtools
The following packages will be REMOVED:
nsight-systems
The following NEW packages will be installed:
libnsl-dev libnsl2 libnss-nis libnss-nisplus libtirpc-common libtirpc-dev libtirpc3 rpcsvc-proto
The following packages will be upgraded:
fakeroot libc-bin libc-dev-bin libc6 libc6-dbg libc6-dev libc6-dev-i386 libc6-dev-x32 libc6-i386 libc6-x32 libfakeroot locales
12 upgraded, 8 newly installed, 1 to remove and 1638 not upgraded.
Need to get 33.7 MB of archives.
After this operation, 351 MB disk space will be freed.
Do you want to continue? [Y/n] y
Get:1 http://th.archive.ubuntu.com/ubuntu jammy/main amd64 libfakeroot amd64 1.28-1ubuntu1 [31.5 kB]
Get:2 http://th.archive.ubuntu.com/ubuntu jammy/main amd64 fakeroot amd64 1.28-1ubuntu1 [60.4 kB]
Get:3 http://th.archive.ubuntu.com/ubuntu jammy/main amd64 locales all 2.35-0ubuntu3 [4,249 kB]
Get:4 http://th.archive.ubuntu.com/ubuntu jammy/main amd64 libc6 amd64 2.35-0ubuntu3 [3,235 kB]
Get:5 http://th.archive.ubuntu.com/ubuntu jammy/main amd64 libc-bin amd64 2.35-0ubuntu3 [706 kB]
Get:6 http://th.archive.ubuntu.com/ubuntu jammy/main amd64 libc6-dbg amd64 2.35-0ubuntu3 [13.9 MB]
Get:7 http://th.archive.ubuntu.com/ubuntu jammy/main amd64 libc6-i386 amd64 2.35-0ubuntu3 [2,838 kB]
Get:8 http://th.archive.ubuntu.com/ubuntu jammy/main amd64 libc-dev-bin amd64 2.35-0ubuntu3 [20.3 kB]
Get:9 http://th.archive.ubuntu.com/ubuntu jammy/main amd64 libc6-dev amd64 2.35-0ubuntu3 [2,099 kB]
Get:10 http://th.archive.ubuntu.com/ubuntu jammy/main amd64 rpcsvc-proto amd64 1.4.2-0ubuntu6 [68.5 kB]
Get:11 http://th.archive.ubuntu.com/ubuntu jammy/main amd64 libtirpc-common all 1.3.2-2build1 [7,616 B]
Get:12 http://th.archive.ubuntu.com/ubuntu jammy/main amd64 libtirpc3 amd64 1.3.2-2build1 [81.1 kB]
Get:13 http://th.archive.ubuntu.com/ubuntu jammy/main amd64 libtirpc-dev amd64 1.3.2-2build1 [192 kB]
Get:14 http://th.archive.ubuntu.com/ubuntu jammy/main amd64 libnsl2 amd64 1.3.0-2build2 [42.3 kB]
Get:15 http://th.archive.ubuntu.com/ubuntu jammy/main amd64 libnsl-dev amd64 1.3.0-2build2 [71.3 kB]
Get:16 http://th.archive.ubuntu.com/ubuntu jammy/main amd64 libc6-dev-i386 amd64 2.35-0ubuntu3 [1,444 kB]
Get:17 http://th.archive.ubuntu.com/ubuntu jammy/main amd64 libc6-dev-x32 amd64 2.35-0ubuntu3 [1,632 kB]
Get:18 http://th.archive.ubuntu.com/ubuntu jammy/main amd64 libc6-x32 amd64 2.35-0ubuntu3 [2,978 kB]
Get:19 http://th.archive.ubuntu.com/ubuntu jammy/main amd64 libnss-nis amd64 3.1-0ubuntu6 [27.3 kB]
Get:20 http://th.archive.ubuntu.com/ubuntu jammy/main amd64 libnss-nisplus amd64 1.3-0ubuntu6 [22.9 kB]
Fetched 33.7 MB in 13s (2,596 kB/s)
Preconfiguring packages ...
(Reading database ... 212395 files and directories currently installed.)
Preparing to unpack .../libfakeroot_1.28-1ubuntu1_amd64.deb ...
Unpacking libfakeroot:amd64 (1.28-1ubuntu1) over (1.24-1) ...
Preparing to unpack .../fakeroot_1.28-1ubuntu1_amd64.deb ...
Unpacking fakeroot (1.28-1ubuntu1) over (1.24-1) ...
Preparing to unpack .../locales_2.35-0ubuntu3_all.deb ...
Unpacking locales (2.35-0ubuntu3) over (2.31-0ubuntu9.17) ...
Preparing to unpack .../libc6_2.35-0ubuntu3_amd64.deb ...
Checking for services that may need to be restarted...
Checking init scripts...
Checking for services that may need to be restarted...
Checking init scripts...
Stopping some services possibly affected by the upgrade (will be restarted later):
cron: stopping...done.
Unpacking libc6:amd64 (2.35-0ubuntu3) over (2.31-0ubuntu9.17) ...
Setting up libc6:amd64 (2.35-0ubuntu3) ...
Checking for services that may need to be restarted...
Checking init scripts...
Restarting services possibly affected by the upgrade:
cron: restarting...done.
smbd: restarting...done.
gdm3: restarting...done.
cups: restarting...done.
Services restarted successfully.
(Reading database ... 212377 files and directories currently installed.)
Preparing to unpack .../libc-bin_2.35-0ubuntu3_amd64.deb ...
Unpacking libc-bin (2.35-0ubuntu3) over (2.31-0ubuntu9.9) ...
Setting up libc-bin (2.35-0ubuntu3) ...
(Reading database ... 212375 files and directories currently installed.)
Preparing to unpack .../00-libc6-dbg_2.35-0ubuntu3_amd64.deb ...
Unpacking libc6-dbg:amd64 (2.35-0ubuntu3) over (2.31-0ubuntu9.17) ...
Preparing to unpack .../01-libc6-i386_2.35-0ubuntu3_amd64.deb ...
Unpacking libc6-i386 (2.35-0ubuntu3) over (2.31-0ubuntu9.17) ...
Preparing to unpack .../02-libc-dev-bin_2.35-0ubuntu3_amd64.deb ...
Unpacking libc-dev-bin (2.35-0ubuntu3) over (2.31-0ubuntu9.17) ...
Preparing to unpack .../03-libc6-dev_2.35-0ubuntu3_amd64.deb ...
Unpacking libc6-dev:amd64 (2.35-0ubuntu3) over (2.31-0ubuntu9.17) ...
Selecting previously unselected package rpcsvc-proto.
Preparing to unpack .../04-rpcsvc-proto_1.4.2-0ubuntu6_amd64.deb ...
Unpacking rpcsvc-proto (1.4.2-0ubuntu6) ...
Selecting previously unselected package libtirpc-common.
Preparing to unpack .../05-libtirpc-common_1.3.2-2build1_all.deb ...
Unpacking libtirpc-common (1.3.2-2build1) ...
Selecting previously unselected package libtirpc3:amd64.
Preparing to unpack .../06-libtirpc3_1.3.2-2build1_amd64.deb ...
Unpacking libtirpc3:amd64 (1.3.2-2build1) ...
Selecting previously unselected package libtirpc-dev:amd64.
Preparing to unpack .../07-libtirpc-dev_1.3.2-2build1_amd64.deb ...
Unpacking libtirpc-dev:amd64 (1.3.2-2build1) ...
Selecting previously unselected package libnsl2:amd64.
Preparing to unpack .../08-libnsl2_1.3.0-2build2_amd64.deb ...
Unpacking libnsl2:amd64 (1.3.0-2build2) ...
Selecting previously unselected package libnsl-dev:amd64.
Preparing to unpack .../09-libnsl-dev_1.3.0-2build2_amd64.deb ...
Unpacking libnsl-dev:amd64 (1.3.0-2build2) ...
Preparing to unpack .../10-libc6-dev-i386_2.35-0ubuntu3_amd64.deb ...
Unpacking libc6-dev-i386 (2.35-0ubuntu3) over (2.31-0ubuntu9.17) ...
Preparing to unpack .../11-libc6-dev-x32_2.35-0ubuntu3_amd64.deb ...
Unpacking libc6-dev-x32 (2.35-0ubuntu3) over (2.31-0ubuntu9.17) ...
Preparing to unpack .../12-libc6-x32_2.35-0ubuntu3_amd64.deb ...
Unpacking libc6-x32 (2.35-0ubuntu3) over (2.31-0ubuntu9.17) ...
(Reading database ... 212431 files and directories currently installed.)
Removing nsight-systems (10.1.243-3) ...
Selecting previously unselected package libnss-nis:amd64.
(Reading database ... 212143 files and directories currently installed.)
Preparing to unpack .../libnss-nis_3.1-0ubuntu6_amd64.deb ...
Unpacking libnss-nis:amd64 (3.1-0ubuntu6) ...
Selecting previously unselected package libnss-nisplus:amd64.
Preparing to unpack .../libnss-nisplus_1.3-0ubuntu6_amd64.deb ...
Unpacking libnss-nisplus:amd64 (1.3-0ubuntu6) ...
Setting up libtirpc-common (1.3.2-2build1) ...
Setting up locales (2.35-0ubuntu3) ...
Installing new version of config file /etc/locale.alias ...
Generating locales (this might take a while)...
en_AG.UTF-8... done
en_AU.UTF-8... done
en_BW.UTF-8... done
en_CA.UTF-8... done
en_DK.UTF-8... done
en_GB.UTF-8... done
en_HK.UTF-8... done
en_IE.UTF-8... done
en_IL.UTF-8... done
en_IN.UTF-8... done
en_NG.UTF-8... done
en_NZ.UTF-8... done
en_PH.UTF-8... done
en_SG.UTF-8... done
en_US.UTF-8... done
en_ZA.UTF-8... done
en_ZM.UTF-8... done
en_ZW.UTF-8... done
zh_CN.UTF-8... done
Generation complete.
Setting up libfakeroot:amd64 (1.28-1ubuntu1) ...
Setting up libc6-dbg:amd64 (2.35-0ubuntu3) ...
Setting up libc6-x32 (2.35-0ubuntu3) ...
Setting up fakeroot (1.28-1ubuntu1) ...
Setting up rpcsvc-proto (1.4.2-0ubuntu6) ...
Setting up libc6-i386 (2.35-0ubuntu3) ...
Setting up libc-dev-bin (2.35-0ubuntu3) ...
Setting up libtirpc3:amd64 (1.3.2-2build1) ...
Setting up libtirpc-dev:amd64 (1.3.2-2build1) ...
Setting up libnsl2:amd64 (1.3.0-2build2) ...
Setting up libnss-nisplus:amd64 (1.3-0ubuntu6) ...
Setting up libnss-nis:amd64 (3.1-0ubuntu6) ...
Setting up libnsl-dev:amd64 (1.3.0-2build2) ...
Setting up libc6-dev:amd64 (2.35-0ubuntu3) ...
Setting up libc6-dev-i386 (2.35-0ubuntu3) ...
Setting up libc6-dev-x32 (2.35-0ubuntu3) ...
Processing triggers for man-db (2.9.1-1) ...
Processing triggers for libc-bin (2.35-0ubuntu3) ...
rootroot@rootroot-X99-Turbo:/etc/apt$
rootroot@rootroot-X99-Turbo:/etc/apt$
rootroot@rootroot-X99-Turbo:/etc/apt$ strings /lib/x86_64-linux-gnu/libc.so.6 |grep GLIBC_
GLIBC_2.2.5
GLIBC_2.2.6
GLIBC_2.3
GLIBC_2.3.2
GLIBC_2.3.3
GLIBC_2.3.4
GLIBC_2.4
GLIBC_2.5
GLIBC_2.6
GLIBC_2.7
GLIBC_2.8
GLIBC_2.9
GLIBC_2.10
GLIBC_2.11
GLIBC_2.12
GLIBC_2.13
GLIBC_2.14
GLIBC_2.15
GLIBC_2.16
GLIBC_2.17
GLIBC_2.18
GLIBC_2.22
GLIBC_2.23
GLIBC_2.24
GLIBC_2.25
GLIBC_2.26
GLIBC_2.27
GLIBC_2.28
GLIBC_2.29
GLIBC_2.30
GLIBC_2.31
GLIBC_2.32
GLIBC_2.33
GLIBC_2.34
GLIBC_2.35
GLIBC_PRIVATE
rootroot@rootroot-X99-Turbo:/etc/apt$
rootroot@rootroot-X99-Turbo:/etc/apt$ cd -
/home/rootroot/friendlywrt-h3
rootroot@rootroot-X99-Turbo:~/friendlywrt-h3$
rootroot@rootroot-X99-Turbo:~/friendlywrt-h3$
rootroot@rootroot-X99-Turbo:~/friendlywrt-h3$
rootroot@rootroot-X99-Turbo:~/friendlywrt-h3$ ./build.sh friendlywrt
==========Start build friendlywrt==========
TARGET_FRIENDLYWRT_CONFIG=config_h3
FRIENDLYWRT_SRC=friendlywrt
=========================================
============Start building friendlywrt============
TARGET_FRIENDLYWRT_CONFIG = config_h3
FRIENDLYWRT_SRC_PATHNAME = friendlywrt
==========================================
Updating feed \'packages\' from \'https://github.com/friendlyarm/friendlywrt_project_packages^5b22f3f59c03412200fe4815d833943f953edf2b\' ...
Create index file \'./feeds/packages.index\'
awk: include/scan.awk: line 21: function asort never defined
awk: include/scan.awk: line 21: function asort never defined
xargs: grep: terminated by signal 13
awk: include/scan.awk: line 21: function asort never defined
xargs: grep: terminated by signal 13
Collecting package info: done
awk: include/scan.awk: line 21: function asort never defined
awk: include/scan.awk: line 21: function asort never defined
awk: include/scan.awk: line 21: function asort never defined
awk: include/scan.awk: line 21: function asort never defined
Collecting target info: done
Updating feed \'luci\' from \'https://github.com/friendlyarm/friendlywrt_project_luci^28fc0fa6d90a8eb3db0c93e749ed5aefdbfc4f8a\' ...
Create index file \'./feeds/luci.index\'
awk: include/scan.awk: line 21: function asort never defined
awk: include/scan.awk: line 21: function asort never defined
awk: include/scan.awk: line 21: function asort never defined
awk: include/scan.awk: line 21: function asort never defined
Collecting package info: done
awk: include/scan.awk: line 21: function asort never defined
awk: include/scan.awk: line 21: function asort never defined
awk: include/scan.awk: line 21: function asort never defined
awk: include/scan.awk: line 21: function asort never defined
Collecting target info: done
Updating feed \'routing\' from \'https://git.openwrt.org/feed/routing.git^f1b0476edc5486793e098fe83089054bb2941663\' ...
Create index file \'./feeds/routing.index\'
awk: include/scan.awk: line 21: function asort never defined
awk: include/scan.awk: line 21: function asort never defined
awk: include/scan.awk: line 21: function asort never defined
awk: include/scan.awk: line 21: function asort never defined
Collecting package info: done
awk: include/scan.awk: line 21: function asort never defined
awk: include/scan.awk: line 21: function asort never defined
awk: include/scan.awk: line 21: function asort never defined
awk: include/scan.awk: line 21: function asort never defined
Collecting target info: done
Updating feed \'telephony\' from \'https://git.openwrt.org/feed/telephony.git^6f95d6ab3f359ee2ce81c20522700937424d1591\' ...
Create index file \'./feeds/telephony.index\'
awk: include/scan.awk: line 21: function asort never defined
awk: include/scan.awk: line 21: function asort never defined
awk: include/scan.awk: line 21: function asort never defined
awk: include/scan.awk: line 21: function asort never defined
Collecting package info: done
awk: include/scan.awk: line 21: function asort never defined
awk: include/scan.awk: line 21: function asort never defined
awk: include/scan.awk: line 21: function asort never defined
awk: include/scan.awk: line 21: function asort never defined
Collecting target info: done
awk: include/scan.awk: line 21: function asort never defined
awk: include/scan.awk: line 21: function asort never defined
xargs: grep: terminated by signal 13
awk: include/scan.awk: line 21: function asort never defined
awk: include/scan.awk: line 21: function asort never defined
Installing all packages from feed packages.
Installing all packages from feed luci.
Installing all packages from feed routing.
Installing all packages from feed telephony.
using .config file
awk: include/scan.awk: line 21: function asort never defined
awk: include/scan.awk: line 21: function asort never defined
xargs: grep: terminated by signal 13
awk: include/scan.awk: line 21: function asort never defined
awk: include/scan.awk: line 21: function asort never defined
make[1] tools/download
make[2] -C tools/sstrip download
make[2] -C tools/padjffs2 download
make[2] -C tools/patch-image download
make[2] target/prereq
make[2] -C tools/gmp download
make[2] -C tools/autoconf download
make[2] -C tools/flex download
make[2] -C tools/libelf download
make[2] -C tools/mklibs download
make[2] -C tools/automake download
make[2] -C tools/mpc download
make[2] -C tools/pkg-config download
make[2] -C tools/m4 download
make[2] -C tools/mkimage download
make[2] -C tools/bison download
make[2] -C tools/mpfr download
make[2] -C tools/quilt download
make[2] -C tools/mtd-utils download
make[2] -C tools/zlib download
make[2] -C tools/expat download
make[2] -C tools/libtool download
make[2] -C tools/e2fsprogs download
make[2] -C tools/firmware-utils download
make[2] -C tools/missing-macros download
make[3] -C target/linux prereq
make[2] -C tools/mm-macros download
make[2] -C tools/scons download
make[2] -C tools/flock download
make[2] -C tools/cmake download
make[2] -C tools/patchelf download
make[2] -C tools/mtools download
make[2] -C tools/gengetopt download
make[2] -C tools/dosfstools download
make[2] -C tools/findutils download
make[2] -C tools/zip download
make[2] -C tools/libressl download
make[2] -C tools/bc download
make[2] -C tools/lzma download
make[2] -C tools/xz download
make[2] -C tools/b43-tools download
make[2] -C tools/patch download
make[2] -C tools/squashfskit4 download
make[2] -C tools/tar download
make[2] -C tools/ccache download
make[2] -C tools/sed download
make[2] -C tools/make-ext4fs download
make tools/download: build failed. Please re-run make with -j1 V=s or V=sc for a higher verbosity level to see what\'s going on
make[1] toolchain/download
make[2] -C toolchain/gdb download
make[2] -C toolchain/kernel-headers download
make[2] -C toolchain/binutils download
make[2] -C toolchain/gcc/initial download
make[2] -C toolchain/fortify-headers download
make[2] -C toolchain/musl download
make[2] -C toolchain/gcc/final download
make[2] target/prereq
make[3] -C target/linux prereq
make toolchain/download: build failed. Please re-run make with -j1 V=s or V=sc for a higher verbosity level to see what\'s going on
make[1] package/download
make[1] target/download
make[2] -C target/linux download
make target/download: build failed. Please re-run make with -j1 V=s or V=sc for a higher verbosity level to see what\'s going on
make: *** [/home/rootroot/friendlywrt-h3/friendlywrt/include/toplevel.mk:199: download] Error 1
Command exited with non-zero status 2
you take 0:06.68 to build friendlywrt
rootroot@rootroot-X99-Turbo:~/friendlywrt-h3$
[END] 2025/5/5 11:56:21