活动介绍

/_ssl.c -o Modules/_ssl.o ./Modules/readline.c:31:31: fatal error: readline/readline.h: No such file or directory #include <readline/readline.h> ^ compilation terminated. ./Modules/_ssl.c:57:25: fatal error: openssl/rsa.h: No such file or directory #include "openssl/rsa.h" ^ compilation terminated. make: *** [Modules/readline.o] Error 1 make: *** Waiting for unfinished jobs.... make: *** [Modules/_ssl.o] Error 1

时间: 2025-06-23 09:21:56 浏览: 35
<think>嗯,用户遇到了编译错误,具体是在编译_ssl.c和readline.c时出现了头文件缺失的问题。我需要先理解错误信息。 首先,错误信息显示找不到readline/readline.h和openssl/rsa.h。这说明系统缺少相应的开发库。因为通常在Linux系统中,头文件属于开发包,需要单独安装。 对于readline头文件的问题,应该安装libreadline-dev或者类似的包。不同的Linux发行版可能包名不同,比如Ubuntu是libreadline-dev,而CentOS可能是readline-devel。用户可能需要根据他们的系统选择合适的命令。 然后是openssl的rsa.h缺失。同样,这需要安装OpenSSL的开发库。在Ubuntu里是libssl-dev,CentOS则是openssl-devel。安装这些包后,头文件应该会被正确找到。 另外,用户可能是在编译Python时遇到这个问题,因为路径看起来像是Python的模块。这时候需要确保所有依赖的开发包都已安装,然后重新配置和编译。如果之前已经尝试过编译,可能需要先清理之前的构建文件,比如执行make clean,再重新运行configure和make。 用户可能需要指导他们如何确定自己的Linux发行版,以便正确安装对应的软件包。同时,提醒他们在安装完依赖后重新运行编译步骤,应该能解决大部分问题。如果还有问题,可能需要检查安装的路径是否正确,或者是否有其他依赖缺失。</think>这个错误是由于编译时缺少必要的开发库文件导致的。我们分步骤解决: 1. **分析错误原因**: - `readline/readline.h` 缺失 → 缺少 `libreadline` 开发库 - `openssl/rsa.h` 缺失 → 缺少 `OpenSSL` 开发库 2. **安装依赖库**(以 Ubuntu/Debian 为例): ```bash sudo apt-get update sudo apt-get install libreadline-dev # 解决 readline 头文件问题 sudo apt-get install libssl-dev # 解决 openssl 头文件问题 ``` 3. **其他系统解决方案**: - CentOS/RHEL: ```bash sudo yum install readline-devel openssl-devel ``` - Fedora: ```bash sudo dnf install readline-devel openssl-devel ``` 4. **重新编译前的清理操作**: ```bash make clean # 清除之前的编译缓存 ./configure # 重新生成配置 make # 重新开始编译 ``` 5. **验证安装结果**: ```bash ls /usr/include/readline/readline.h # 确认头文件存在 ls /usr/include/openssl/rsa.h # 确认头文件存在 ``` **特别注意**:如果是在编译 Python 解释器时出现此错误,建议使用系统包管理器安装完整的构建依赖: ```bash sudo apt-get build-dep python3 # Ubuntu/Debian ```
阅读全文

相关推荐

m gcc -std=gnu11 -pthread -shared Modules/_elementtree.o -o Modules/_elementtree.cpython-312-x86_6 4-linux-gnu.so./_bootstrap_python ./Programs/_freeze_module.py abc ./Lib/abc.py Python/frozen_modules/abc.h ./_bootstrap_python ./Programs/_freeze_module.py codecs ./Lib/codecs.py Python/frozen_modules/codecs.h ./_bootstrap_python ./Programs/_freeze_module.py io ./Lib/io.py Python/frozen_modules/io.h Fatal Python error: init_import_site: Failed to import the site module Python runtime state: initialized Traceback (most recent call last): File "/usr/local/soft/Python-3.12.3/Lib/site.py", line 73, in <module> import os File "/usr/local/soft/Python-3.12.3/Lib/os.py", line 29, in <module> from _collections_abc import _check_methods SystemError: <built-in function compile> returned NULL without setting an exception make[1]: *** [Python/frozen_modules/abc.h] 错误 1 make[1]: *** 正在等待未完成的任务.... Fatal Python error: init_import_site: Failed to import the site module Python runtime state: initialized Traceback (most recent call last): File "/usr/local/soft/Python-3.12.3/Lib/site.py", line 73, in <module> import os File "/usr/local/soft/Python-3.12.3/Lib/os.py", line 29, in <module> from _collections_abc import _check_methods SystemError: <built-in function compile> returned NULL without setting an exception make[1]: *** [Python/frozen_modules/codecs.h] 错误 1 Fatal Python error: init_import_site: Failed to import the site module Python runtime state: initialized Traceback (most recent call last): File "/usr/local/soft/Python-3.12.3/Lib/site.py", line 73, in <module> import os File "/usr/local/soft/Python-3.12.3/Lib/os.py", line 29, in <module> from _collections_abc import _check_methods SystemError: <built-in function compile> returned NULL without setting an exception make[1]: *** [Python/frozen_modules/io.h] 错误 1 make[1]: 离开目录“/usr/local/soft/P

<dahua>dir e cmlsh_completion: enter------------------ filename_completion_function: completion = etc/ filename_completion_matches: Found 1 matches for 'e': [0] etc/ tc/ cmlsh_completion: enter------------------ filename_completion_function: completion = etc/nos.conf filename_completion_function: completion = etc/nos.conf.bak filename_completion_function: completion = etc/ssh/ filename_completion_function: completion = etc/CML_DB.db filename_completion_matches: Found 4 matches for 'etc/': [0] etc/nos.conf [1] etc/nos.conf.bak [2] etc/ssh/ [3] etc/CML_DB.db nos.conf cmlsh_completion: enter------------------ filename_completion_function: completion = etc/nos.conf filename_completion_function: completion = etc/nos.conf.bak filename_completion_matches: Found 2 matches for 'etc/nos.conf': [0] etc/nos.conf [1] etc/nos.conf.bak etc/nos.conf.bak <dahua>dir etc/nos.conf cmlsh_completion: enter------------------ filename_completion_function: completion = etc/nos.conf filename_completion_function: completion = etc/nos.conf.bak filename_completion_matches: Found 2 matches for 'etc/nos.conf': [0] etc/nos.conf [1] etc/nos.conf.bak etc/nos.conf.bak <dahua>dir etc/nos.conf cmlsh_completion: enter------------------ filename_completion_function: completion = etc/nos.conf filename_completion_function: completion = etc/nos.conf.bak filename_completion_matches: Found 2 matches for 'etc/nos.conf': [0] etc/nos.conf [1] etc/nos.conf.bak etc/nos.conf.bak <dahua>dir etc/nos.conf cmlsh_completion: enter------------------ filename_completion_function: completion = etc/nos.conf filename_completion_function: completion = etc/nos.conf.bak filename_completion_matches: Found 2 matches for 'etc/nos.conf': [0] etc/nos.conf [1] etc/nos.conf.bak etc/nos.conf.bak <dahua>dir etc/nos.conf cmlsh_completion: enter------------------ filename_completion_function: completion = etc/nos.conf filename_completion_function: completion = etc/nos.conf.bak filename_completion_matches: Found 2 matches for 'etc/nos.conf': [0] etc/nos.conf [1] etc/nos.conf.bak etc/nos.conf.bak <dahua>dir etc/nos.conf cmlsh_completion: enter------------------ filename_completion_function: completion = etc/nos.conf filename_completion_function: completion = etc/nos.conf.bak filename_completion_matches: Found 2 matches for 'etc/nos.conf': [0] etc/nos.conf [1] etc/nos.conf.bak etc/nos.conf.bak <dahua>dir etc/nos.conf cmlsh_completion: enter------------------ filename_completion_function: completion = etc/nos.conf filename_completion_function: completion = etc/nos.conf.bak filename_completion_matches: Found 2 matches for 'etc/nos.conf': [0] etc/nos.conf [1] etc/nos.conf.bak etc/nos.conf.bak <dahua>dir etc/nos.conf cmlsh_completion: enter------------------ filename_completion_function: completion = etc/nos.conf filename_completion_function: completion = etc/nos.conf.bak filename_completion_matches: Found 2 matches for 'etc/nos.conf': [0] etc/nos.conf [1] etc/nos.conf.bak etc/nos.conf.bak <dahua>dir etc/nos.conf cmlsh_completion: enter------------------ filename_completion_function: completion = etc/nos.conf filename_completion_function: completion = etc/nos.conf.bak filename_completion_matches: Found 2 matches for 'etc/nos.conf': [0] etc/nos.conf [1] etc/nos.conf.bak etc/nos.conf.bak <dahua>dir etc/nos.conf cmlsh_completion: enter------------------ filename_completion_function: completion = etc/nos.conf filename_completion_function: completion = etc/nos.conf.bak filename_completion_matches: Found 2 matches for 'etc/nos.conf': [0] etc/nos.conf [1] etc/nos.conf.bak etc/nos.conf.bak <dahua>dir etc/nos.conf cmlsh_completion: enter------------------ filename_completion_function: completion = etc/nos.conf filename_completion_function: completion = etc/nos.conf.bak filename_completion_matches: Found 2 matches for 'etc/nos.conf': [0] etc/nos.conf [1] etc/nos.conf.bak etc/nos.conf.bak <dahua>dir etc/nos.conf Directory of flash:/etc/nos.conf 0 -rw- 2441 Jan 01 1970 00:01:30 nos.conf 436148 KB total (340608 KB free) <dahua> 现在我连续tab键,但是没有循环显示

bash: error while loading shared libraries: libtinfo.so.5: cannot open shared object file: No such file or directory bash: error while loading shared libraries: libtinfo.so.5: cannot open shared object file: No such file or directory awk: error while loading shared libraries: libreadline.so.6: cannot open shared object file: No such file or directory bash: error while loading shared libraries: libtinfo.so.5: cannot open shared object file: No such file or directory bash: error while loading shared libraries: libtinfo.so.5: cannot open shared object file: No such file or directory awk: error while loading shared libraries: libreadline.so.6: cannot open shared object file: No such file or directory awk: error while loading shared libraries: libreadline.so.6: cannot open shared object file: No such file or directory bash: error while loading shared libraries: libtinfo.so.5: cannot open shared object file: No such file or directory bash: error while loading shared libraries: libtinfo.so.5: cannot open shared object file: No such file or directory awk: error while loading shared libraries: libreadline.so.6: cannot open shared object file: No such file or directory Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /etc/perl /usr/local/lib/x86_64-linux-gnu/perl/5.22.1 /usr/local/share/perl/5.22.1 /usr/lib/x86_64-linux-gnu/perl5/5.22 /usr/share/perl5 /usr/lib/x86_64-linux-gnu/perl/5.22 /usr/share/perl/5.22 /usr/local/lib/site_perl /usr/lib/x86_64-linux-gnu/perl-base .) at ./scripts/metadata.pl line 2. BEGIN failed--compilation aborted at ./scripts/metadata.pl line 2. Failed to build tmp/.config-package.in Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /etc/perl /usr/local/lib/x86_64-linux-gnu/perl/5.22.1 /usr/local/share/perl/5.22.1 /usr/lib/x86_64-linux-gnu/perl5/5.22 /usr/share/perl5 /usr/lib/x86_64-linux-gnu/perl/5.22 /usr/share/perl/5.22 /usr/local/lib/site_perl /usr/lib/x86_64-linux-gnu/perl-base .) at ./scripts/metadata.pl line 2. BEGIN failed--compilation aborted at ./scripts/metadata.pl line 2. make[1]: *** [/home/zjc/openwrt/include/toplevel.mk:75: prepare-tmpinfo] Error 1 make: *** [/home/zjc/openwrt/include/toplevel.mk:181: world] Error 2

cmlsh_completion: matches = etc/ssh/, etc/nos.conf, etc/nos.conf.bak, etc/CML_DB.db, ssh/ cmlsh_completion: enter------------------ filename_completion_function: temp = etc/ssh/ssh_host_rsa_key.pub filename_completion_function: temp = etc/ssh/ssh_host_ecdsa_key.pub filename_completion_function: temp = etc/ssh/ssh_host_rsa_key filename_completion_function: temp = etc/ssh/ssh_host_ed25519_key.pub filename_completion_function: temp = etc/ssh/ssh_host_ed25519_key filename_completion_function: temp = etc/ssh/ssh_host_ecdsa_key filename_completion_matches: Found 6 matches for ‘etc/ssh/’: [0] etc/ssh/ssh_host_rsa_key.pub [1] etc/ssh/ssh_host_ecdsa_key.pub [2] etc/ssh/ssh_host_rsa_key [3] etc/ssh/ssh_host_ed25519_key.pub [4] etc/ssh/ssh_host_ed25519_key [5] etc/ssh/ssh_host_ecdsa_key cmlsh_completion: matches = etc/ssh/ssh_host_rsa_key.pub, etc/ssh/ssh_host_ecdsa_key.pub, etc/ssh/ssh_host_rsa_key, etc/ssh/ssh_host_ed25519_key.pub, etc/ssh/ssh_host_ed25519_key, etc/ssh/ssh_host_ecdsa_key, ssh_host_rsa_key.pub cmlsh_completion: enter------------------ filename_completion_function: temp = etc/ssh/ssh_host_rsa_key.pub filename_completion_matches: Found 1 matches for ‘etc/ssh/ssh_host_rsa_key.pub’: [0] etc/ssh/ssh_host_rsa_key.pub cmlsh_completion: matches = etc/ssh/ssh_host_rsa_key.pub, Username: 我现在主要的问题是,上边已经遍历了etc/ssh路径下的所有文件了,为什么最后还要遍历一次 [0] etc/ssh/ssh_host_rsa_key.pub?不合理啊 而且最后的tab时,我没有输入etc/ssh/ssh_host_rsa_key.pub

libedit/readline.c: In function ‘filename_completion_function’: libedit/readline.c:1757:44: error: macro "XSTRDUP" requires 2 arguments, but only 1 given 1757 | comp_state.base_text = XSTRDUP(text); | ^ In file included from /home/423251/GNOS_5_30_static/Trunk/src_2406/build/linux-arm64-charlie-sikadeer/nos/pal/linux/pal_memory.h:6, from /home/423251/GNOS_5_30_static/Trunk/src_2406/build/linux-arm64-charlie-sikadeer/nos/pal/linux/pal.h:27, from libedit/compat.h:6, from libedit/readline.c:39: /home/423251/GNOS_5_30_static/Trunk/src_2406/build/linux-arm64-charlie-sikadeer/nos/lib/memory.h:2670: note: macro "XSTRDUP" defined here 2670 | #define XSTRDUP(type, str) mfh_strdup(type, str, NULL, __FUNCTION__, __LINE__) | libedit/readline.c:1757:32: error: ‘XSTRDUP’ undeclared (first use in this function) 1757 | comp_state.base_text = XSTRDUP(text); | ^~~~~~~ libedit/readline.c:1757:32: note: each undeclared identifier is reported only once for each function it appears in libedit/readline.c:1819:42: error: macro "XMALLOC" requires 2 arguments, but only 1 given 1819 | char *path = XMALLOC(path_len); | ^ In file included from /home/423251/GNOS_5_30_static/Trunk/src_2406/build/linux-arm64-charlie-sikadeer/nos/pal/linux/pal_memory.h:6, from /home/423251/GNOS_5_30_static/Trunk/src_2406/build/linux-arm64-charlie-sikadeer/nos/pal/linux/pal.h:27, from libedit/compat.h:6, from libedit/readline.c:39: /home/423251/GNOS_5_30_static/Trunk/src_2406/build/linux-arm64-charlie-sikadeer/nos/lib/memory.h:2666: note: macro "XMALLOC" defined here 2666 | #define XMALLOC(type, size) mfh_malloc(type, size, NULL, __FUNCTION__, __LINE__) | libedit/readline.c:1819:26: error: ‘XMALLOC’ undeclared (first use in this function) 1819 | char *path = XMALLOC(path_len); | ^~~~~~~ libedit/readline.c:1843:66: error: macro "XCALLOC" requires 2 arguments, but only 1 given 1843 | comp_state.matches = XCALLOC((count + 1) * sizeof(char *)); | ^ In file included from /home/423251/GNOS_5_30_static/Trunk/src_2406/build/linux-arm64-charlie-sikadeer/nos/pal/linux/pal_memory.h:6, from /home/423251/GNOS_5_30_static/Trunk/src_2406/build/linux-arm64-charlie-sikadeer/nos/pal/linux/pal.h:27, from libedit/compat.h:6, from libedit/readline.c:39: /home/423251/GNOS_5_30_static/Trunk/src_2406/build/linux-arm64-charlie-sikadeer/nos/lib/memory.h:2667: note: macro "XCALLOC" defined here 2667 | #define XCALLOC(type, size) mfh_calloc(type, size, NULL, __FUNCTION__, __LINE__) | libedit/readline.c:1843:30: error: ‘XCALLOC’ undeclared (first use in this function) 1843 | comp_state.matches = XCALLOC((count + 1) * sizeof(char *)); | ^~~~~~~ libedit/readline.c:1856:37: error: macro "XSTRDUP" requires 2 arguments, but only 1 given 1856 | char *result = XSTRDUP(match); | ^ In file included from /home/423251/GNOS_5_30_static/Trunk/src_2406/build/linux-arm64-charlie-sikadeer/nos/pal/linux/pal_memory.h:6, from /home/423251/GNOS_5_30_static/Trunk/src_2406/build/linux-arm64-charlie-sikadeer/nos/pal/linux/pal.h:27, from libedit/compat.h:6, from libedit/readline.c:39: /home/423251/GNOS_5_30_static/Trunk/src_2406/build/linux-arm64-charlie-sikadeer/nos/lib/memory.h:2670: note: macro "XSTRDUP" defined here 2670 | #define XSTRDUP(type, str) mfh_strdup(type, str, NULL, __FUNCTION__, __LINE__) | libedit/readline.c:1855:15: error: unused variable ‘match’ [-Werror=unused-variable] 1855 | char *match = comp_state.matches[comp_state.current_index]; | ^~~~~ libedit/readline.c:1871:53: error: macro "XSTRDUP" requires 2 arguments, but only 1 given 1871 | char *result = XSTRDUP(comp_state.matches[0]); | ^ In file included from /home/423251/GNOS_5_30_static/Trunk/src_2406/build/linux-arm64-charlie-sikadeer/nos/pal/linux/pal_memory.h:6, from /home/423251/GNOS_5_30_static/Trunk/src_2406/build/linux-arm64-charlie-sikadeer/nos/pal/linux/pal.h:27, from libedit/compat.h:6, from libedit/readline.c:39: /home/423251/GNOS_5_30_static/Trunk/src_2406/build/linux-arm64-charlie-sikadeer/nos/lib/memory.h:2670: note: macro "XSTRDUP" defined here 2670 | #define XSTRDUP(type, str) mfh_strdup(type, str, NULL, __FUNCTION__, __LINE__) | cc1: all warnings being treated as errors

uboot的build.log分析问题scripts/kconfig/conf --silentoldconfig Kconfig CHK include/config.h CFG u-boot.cfg GEN include/autoconf.mk GEN include/autoconf.mk.dep CFG spl/u-boot.cfg GEN spl/include/autoconf.mk CHK include/config/uboot.release CHK include/generated/version_autogenerated.h CHK include/generated/timestamp_autogenerated.h UPD include/generated/timestamp_autogenerated.h CC lib/asm-offsets.s CHK include/generated/generic-asm-offsets.h CC arch/arm/lib/asm-offsets.s CHK include/generated/asm-offsets.h HOSTCC tools/bmp_logo HOSTCC tools/gen_eth_addr HOSTCC tools/img2srec HOSTCC tools/mkenvimage.o HOSTCC tools/os_support.o WRAP tools/lib/crc32.c HOSTCC tools/lib/crc32.o HOSTLD tools/mkenvimage HOSTCC tools/aisimage.o HOSTCC tools/atmelimage.o WRAP tools/common/bootm.c HOSTCC tools/common/bootm.o HOSTCC tools/default_image.o WRAP tools/lib/fdtdec_common.c HOSTCC tools/lib/fdtdec_common.o WRAP tools/lib/fdtdec.c HOSTCC tools/lib/fdtdec.o HOSTCC tools/fit_common.o HOSTCC tools/fit_image.o WRAP tools/common/image-fit.c HOSTCC tools/common/image-fit.o HOSTCC tools/image-host.o WRAP tools/common/image.c HOSTCC tools/common/image.o HOSTCC tools/imagetool.o HOSTCC tools/imximage.o HOSTCC tools/kwbimage.o WRAP tools/lib/md5.c HOSTCC tools/lib/md5.o HOSTCC tools/lpc32xximage.o HOSTCC tools/mxsimage.o HOSTCC tools/omapimage.o HOSTCC tools/pblimage.o HOSTCC tools/pbl_crc32.o HOSTCC tools/vybridimage.o WRAP tools/lib/rc4.c HOSTCC tools/lib/rc4.o HOSTCC tools/rkcommon.o HOSTCC tools/rkimage.o HOSTCC tools/rksd.o HOSTCC tools/rkspi.o HOSTCC tools/socfpgaimage.o WRAP tools/lib/sha1.c HOSTCC tools/lib/sha1.o WRAP tools/lib/sha256.c HOSTCC tools/lib/sha256.o WRAP tools/common/hash.c HOSTCC tools/common/hash.o HOSTCC tools/ublimage.o HOSTCC tools/zynqimage.o HOSTCC tools/zynqmpimage.o WRAP tools/lib/libfdt/fdt.c HOSTCC tools/lib/libfdt/fdt.o WRAP tools/lib/libfdt/fdt_ro.c HOSTCC tools/lib/libfdt/fdt_ro.o WRAP tools/lib/libfdt/fdt_rw.c HOSTCC tools/lib/libfdt/fdt_rw.o WRAP tools/lib/libfdt/fdt_strerror.c HOSTCC tools/lib/libfdt/fdt_strerror.o WRAP tools/lib/libfdt/fdt_wip.c HOSTCC tools/lib/libfdt/fdt_wip.o WRAP tools/lib/libfdt/fdt_region.c HOSTCC tools/lib/libfdt/fdt_region.o WRAP tools/lib/libfdt/fdt_sw.c HOSTCC tools/lib/libfdt/fdt_sw.o HOSTCC tools/gpimage.o HOSTCC tools/gpimage-common.o HOSTCC tools/dumpimage.o HOSTLD tools/dumpimage HOSTCC tools/mkimage.o HOSTLD tools/mkimage HOSTCC tools/mksunxiboot HOSTCC tools/proftool HOSTCC tools/fdtgrep.o HOSTLD tools/fdtgrep tools/bmp_logo --gen-info ./tools/logos/denx.bmp > include/bmp_logo.h tools/bmp_logo --gen-data ./tools/logos/denx.bmp > include/bmp_logo_data.h LD arch/arm/cpu/built-in.o CC arch/arm/cpu/armv7/cache_v7.o AS arch/arm/cpu/armv7/cache_v7_asm.o CC arch/arm/cpu/armv7/cpu.o CC arch/arm/cpu/armv7/cp15.o CC arch/arm/cpu/armv7/syslib.o AS arch/arm/cpu/armv7/lowlevel_init.o CC arch/arm/cpu/armv7/sunxi/timer.o LD arch/arm/cpu/armv7/sunxi/built-in.o LD arch/arm/cpu/armv7/built-in.o AS arch/arm/cpu/armv7/start.o AS arch/arm/lib/vectors.o AS arch/arm/lib/crt0.o AS arch/arm/lib/relocate.o CC arch/arm/lib/bootm-fdt.o CC arch/arm/lib/bootm.o CC arch/arm/lib/zimage.o CC arch/arm/lib/sections.o CC arch/arm/lib/stack.o CC arch/arm/lib/interrupts.o CC arch/arm/lib/reset.o CC arch/arm/lib/cache.o CC arch/arm/lib/cache-cp15.o CC arch/arm/lib/psci-dt.o LD arch/arm/lib/built-in.o AS arch/arm/lib/ashldi3.o AS arch/arm/lib/ashrdi3.o CC arch/arm/lib/div0.o AS arch/arm/lib/div64.o AS arch/arm/lib/lib1funcs.o AS arch/arm/lib/lshrdi3.o AS arch/arm/lib/muldi3.o AS arch/arm/lib/uldivmod.o AR arch/arm/lib/lib.a CC arch/arm/lib/eabi_compat.o AS arch/arm/lib/crt0_arm_efi.o CC arch/arm/lib/reloc_arm_efi.o CC arch/arm/mach-sunxi/board.o CC arch/arm/mach-sunxi/clock.o CC arch/arm/mach-sunxi/cpu_info.o CC arch/arm/mach-sunxi/dram_helpers.o CC arch/arm/mach-sunxi/pinmux.o CC arch/arm/mach-sunxi/usb_phy.o CC arch/arm/mach-sunxi/prcm.o CC arch/arm/mach-sunxi/rsb.o CC arch/arm/mach-sunxi/clock_sun6i.o LD arch/arm/mach-sunxi/built-in.o CC board/sunxi/board.o LD board/sunxi/built-in.o CC cmd/boot.o CC cmd/bootm.o CC cmd/help.o CC cmd/version.o CC cmd/source.o CC cmd/bdinfo.o CC cmd/bootefi.o CC cmd/bootmenu.o CC cmd/bootz.o CC cmd/console.o CC cmd/echo.o CC cmd/elf.o CC cmd/exit.o CC cmd/ext4.o CC cmd/ext2.o CC cmd/fat.o CC cmd/fdt.o CC cmd/fs.o CC cmd/gpio.o CC cmd/itest.o CC cmd/load.o CC cmd/mem.o CC cmd/mii.o CC cmd/misc.o CC cmd/mmc.o CC cmd/net.o CC cmd/part.o CC cmd/pcmcia.o CC cmd/pxe.o CC cmd/setexpr.o CC cmd/test.o CC cmd/usb.o CC cmd/disk.o CC cmd/ximg.o CC cmd/nvedit.o LD cmd/built-in.o CC common/init/board_init.o LD common/init/built-in.o CC common/main.o CC common/exports.o CC common/hash.o CC common/cli_hush.o CC common/autoboot.o CC common/board_f.o CC common/board_r.o CC common/board_info.o CC common/bootm.o CC common/bootm_os.o CC common/env_attr.o CC common/env_callback.o CC common/env_flags.o CC common/env_mmc.o CC common/fdt_support.o CC common/miiphyutil.o CC common/usb.o CC common/usb_hub.o CC common/usb_storage.o CC common/flash.o CC common/edid.o CC common/splash.o CC common/menu.o CC common/usb_kbd.o CC common/env_common.o CC common/console.o CC common/dlmalloc.o CC common/malloc_simple.o CC common/image.o CC common/image-fdt.o CC common/memsize.o CC common/stdio.o CC common/cli_simple.o CC common/cli.o CC common/cli_readline.o CC common/command.o CC common/s_record.o CC common/xyzModem.o LD common/built-in.o CC disk/part.o CC disk/part_dos.o CC disk/part_iso.o CC disk/part_efi.o LD disk/built-in.o LD drivers/adc/built-in.o CC drivers/block/blk_legacy.o LD drivers/block/built-in.o CC drivers/core/device.o CC drivers/core/lists.o CC drivers/core/root.o CC drivers/core/uclass.o CC drivers/core/util.o CC drivers/core/device-remove.o CC drivers/core/simple-bus.o CC drivers/core/dump.o LD drivers/core/built-in.o CC drivers/crypto/fsl/sec.o LD drivers/crypto/fsl/built-in.o LD drivers/crypto/rsa_mod_exp/built-in.o LD drivers/crypto/built-in.o LD drivers/dfu/built-in.o LD drivers/hwmon/built-in.o CC drivers/input/keyboard-uclass.o CC drivers/input/input.o CC drivers/input/key_matrix.o LD drivers/input/built-in.o LD drivers/mailbox/built-in.o LD drivers/memory/built-in.o LD drivers/misc/built-in.o CC drivers/pcmcia/tqm8xx_pcmcia.o LD drivers/pcmcia/built-in.o LD drivers/phy/marvell/built-in.o LD drivers/pwm/built-in.o LD drivers/reset/built-in.o CC drivers/rtc/date.o LD drivers/rtc/built-in.o LD drivers/soc/built-in.o LD drivers/sound/built-in.o LD drivers/spmi/built-in.o LD drivers/sysreset/built-in.o LD drivers/thermal/built-in.o LD drivers/timer/built-in.o LD drivers/tpm/built-in.o LD drivers/twserial/built-in.o CC drivers/video/cfb_console.o CC drivers/video/sunxi_display.o CC drivers/video/videomodes.o LD drivers/video/bridge/built-in.o LD drivers/video/built-in.o LD drivers/watchdog/built-in.o LD drivers/built-in.o LD drivers/dma/built-in.o CC drivers/gpio/gpio-uclass.o CC drivers/gpio/sunxi_gpio.o LD drivers/gpio/built-in.o LD drivers/i2c/built-in.o CC drivers/mmc/mmc_legacy.o CC drivers/mmc/mmc.o CC drivers/mmc/sunxi_mmc.o CC drivers/mmc/mmc_write.o LD drivers/mmc/built-in.o LD drivers/mtd/built-in.o LD drivers/mtd/onenand/built-in.o LD drivers/mtd/spi/built-in.o LD drivers/net/built-in.o LD drivers/net/phy/built-in.o LD drivers/pci/built-in.o LD drivers/power/built-in.o LD drivers/power/battery/built-in.o LD drivers/power/domain/built-in.o LD drivers/power/fuel_gauge/built-in.o LD drivers/power/mfd/built-in.o LD drivers/power/pmic/built-in.o LD drivers/power/regulator/built-in.o CC drivers/serial/serial-uclass.o CC drivers/serial/ns16550.o LD drivers/serial/built-in.o CC drivers/spi/spi.o LD drivers/spi/built-in.o CC drivers/usb/common/common.o LD drivers/usb/common/built-in.o LD drivers/usb/dwc3/built-in.o LD drivers/usb/emul/built-in.o LD drivers/usb/eth/built-in.o LD drivers/usb/gadget/built-in.o LD drivers/usb/gadget/udc/built-in.o CC drivers/usb/host/usb-uclass.o LD drivers/usb/host/built-in.o LD drivers/usb/musb-new/built-in.o LD drivers/usb/musb/built-in.o LD drivers/usb/phy/built-in.o LD drivers/usb/ulpi/built-in.o CC fs/fs.o CC fs/ext4/ext4fs.o CC fs/ext4/ext4_common.o CC fs/ext4/dev.o LD fs/ext4/built-in.o CC fs/fat/fat_write.o CC fs/fat/file.o LD fs/fat/built-in.o LD fs/built-in.o CC lib/efi_loader/efi_image_loader.o CC lib/efi_loader/efi_boottime.o CC lib/efi_loader/efi_runtime.o CC lib/efi_loader/efi_console.o CC lib/efi_loader/efi_memory.o CC lib/efi_loader/efi_disk.o CC lib/efi_loader/efi_net.o CC lib/efi_loader/efi_smbios.o LD lib/efi_loader/built-in.o CC lib/efi_loader/helloworld.o arm-linux-gnueabihf-ld.bfd -nostdlib -znocombreloc -T ./arch/arm/lib/elf_arm_efi.lds -shared -Bsymbolic \ lib/efi_loader/helloworld.o arch/arm/lib/crt0_arm_efi.o arch/arm/lib/reloc_arm_efi.o arch/arm/lib/elf_arm_efi.lds -o lib/efi_loader/helloworld.so arm-linux-gnueabihf-objcopy -j .header -j .text -j .sdata -j .data -j .dynamic \ -j .dynsym -j .rel* -j .rela* -j .reloc \ -O binary lib/efi_loader/helloworld.so lib/efi_loader/helloworld.efi CC lib/libfdt/fdt.o CC lib/libfdt/fdt_ro.o CC lib/libfdt/fdt_rw.o CC lib/libfdt/fdt_strerror.o CC lib/libfdt/fdt_sw.o CC lib/libfdt/fdt_wip.o CC lib/libfdt/fdt_empty_tree.o CC lib/libfdt/fdt_addresses.o CC lib/libfdt/fdt_region.o CC lib/libfdt/fdt_overlay.o LD lib/libfdt/built-in.o CC lib/zlib/zlib.o LD lib/zlib/built-in.o CC lib/crc7.o CC lib/crc8.o CC lib/crc16.o CC lib/gunzip.o CC lib/smbios.o CC lib/initcall.o CC lib/lmb.o CC lib/ldiv.o CC lib/net_utils.o CC lib/qsort.o CC lib/rc4.o CC lib/list_sort.o CC lib/fdtdec_common.o CC lib/fdtdec.o CC lib/hashtable.o CC lib/errno.o CC lib/display_options.o CC lib/crc32.o CC lib/ctype.o CC lib/div64.o CC lib/hang.o CC lib/linux_compat.o CC lib/linux_string.o CC lib/membuff.o CC lib/slre.o CC lib/string.o CC lib/tables_csum.o CC lib/time.o CC lib/uuid.o CC lib/vsprintf.o CC lib/panic.o CC lib/strto.o CC lib/strmhz.o LD lib/built-in.o CC net/checksum.o CC net/arp.o CC net/bootp.o CC net/eth-uclass.o CC net/eth_common.o CC net/net.o CC net/nfs.o CC net/ping.o CC net/tftp.o LD net/built-in.o LD test/built-in.o CC test/dm/cmd_dm.o LD test/dm/built-in.o CC examples/standalone/stubs.o LD examples/standalone/libstubs.o CC examples/standalone/hello_world.o LD examples/standalone/hello_world OBJCOPY examples/standalone/hello_world.srec OBJCOPY examples/standalone/hello_world.bin LDS u-boot.lds LD u-boot DTC arch/arm/dts/sun8i-v3s-licheepi-zero.dtb ./arch/arm/dts/sun8i-v3s.dtsi:211.26-215.6: Warning (unit_address_vs_reg): /soc/pinctrl@01c20800/uart0@0: node has a unit name, but no reg or ranges property ./arch/arm/dts/sun8i-v3s.dtsi:217.24-223.6: Warning (unit_address_vs_reg): /soc/pinctrl@01c20800/mmc0@0: node has a unit name, but no reg or ranges property ./arch/arm/dts/sunxi-common-regulators.dtsi:49.33-54.4: Warning (unit_address_vs_reg): /soc/pinctrl@01c20800/ahci_pwr_pin@0: node has a unit name, but no reg or ranges property ./arch/arm/dts/sunxi-common-regulators.dtsi:56.35-61.4: Warning (unit_address_vs_reg): /soc/pinctrl@01c20800/usb0_vbus_pin@0: node has a unit name, but no reg or ranges property ./arch/arm/dts/sunxi-common-regulators.dtsi:63.35-68.4: Warning (unit_address_vs_reg): /soc/pinctrl@01c20800/usb1_vbus_pin@0: node has a unit name, but no reg or ranges property ./arch/arm/dts/sunxi-common-regulators.dtsi:70.35-75.4: Warning (unit_address_vs_reg): /soc/pinctrl@01c20800/usb2_vbus_pin@0: node has a unit name, but no reg or ranges property ./arch/arm/dts/sun8i-v3s.dtsi:99.22-116.5: Warning (simple_bus_reg): /soc/mmc@01c0f000: simple-bus unit address format error, expected "1c0f000" also defined at <stdin>:61.7-68.3 ./arch/arm/dts/sun8i-v3s.dtsi:118.22-135.5: Warning (simple_bus_reg): /soc/mmc@01c10000: simple-bus unit address format error, expected "1c10000" ./arch/arm/dts/sun8i-v3s.dtsi:137.22-154.5: Warning (simple_bus_reg): /soc/mmc@01c11000: simple-bus unit address format error, expected "1c11000" ./arch/arm/dts/sun8i-v3s.dtsi:156.25-167.5: Warning (simple_bus_reg): /soc/usb@01c19000: simple-bus unit address format error, expected "1c19000" also defined at <stdin>:76.10-79.3 ./arch/arm/dts/sun8i-v3s.dtsi:169.24-181.5: Warning (simple_bus_reg): /soc/phy@01c19400: simple-bus unit address format error, expected "1c19400" also defined at <stdin>:81.9-84.3 ./arch/arm/dts/sun8i-v3s.dtsi:183.23-190.5: Warning (simple_bus_reg): /soc/clock@01c20000: simple-bus unit address format error, expected "1c20000" ./arch/arm/dts/sun8i-v3s.dtsi:192.21-197.5: Warning (simple_bus_reg): /soc/rtc@01c20400: simple-bus unit address format error, expected "1c20400" ./arch/arm/dts/sun8i-v3s.dtsi:199.25-224.5: Warning (simple_bus_reg): /soc/pinctrl@01c20800: simple-bus unit address format error, expected "1c20800" also defined at ./arch/arm/dts/sunxi-common-regulators.dtsi:48.6-76.3 ./arch/arm/dts/sun8i-v3s.dtsi:226.18-232.5: Warning (simple_bus_reg): /soc/timer@01c20c00: simple-bus unit address format error, expected "1c20c00" ./arch/arm/dts/sun8i-v3s.dtsi:234.27-238.5: Warning (simple_bus_reg): /soc/watchdog@01c20ca0: simple-bus unit address format error, expected "1c20ca0" ./arch/arm/dts/sun8i-v3s.dtsi:240.26-249.5: Warning (simple_bus_reg): /soc/serial@01c28000: simple-bus unit address format error, expected "1c28000" also defined at <stdin>:70.8-74.3 ./arch/arm/dts/sun8i-v3s.dtsi:251.26-260.5: Warning (simple_bus_reg): /soc/serial@01c28400: simple-bus unit address format error, expected "1c28400" ./arch/arm/dts/sun8i-v3s.dtsi:262.26-271.5: Warning (simple_bus_reg): /soc/serial@01c28800: simple-bus unit address format error, expected "1c28800" ./arch/arm/dts/sun8i-v3s.dtsi:273.38-282.5: Warning (simple_bus_reg): /soc/interrupt-controller@01c81000: simple-bus unit address format error, expected "1c81000" SHIPPED dts/dt.dtb CC spl/arch/arm/mach-sunxi/board.o CC spl/arch/arm/mach-sunxi/clock.o CC spl/arch/arm/mach-sunxi/cpu_info.o CC spl/arch/arm/mach-sunxi/dram_helpers.o CC spl/arch/arm/mach-sunxi/pinmux.o CC spl/arch/arm/mach-sunxi/usb_phy.o CC spl/arch/arm/mach-sunxi/prcm.o CC spl/arch/arm/mach-sunxi/rsb.o CC spl/arch/arm/mach-sunxi/clock_sun6i.o CC spl/arch/arm/mach-sunxi/dram_sun8i_h3.o LD spl/arch/arm/mach-sunxi/built-in.o CC spl/arch/arm/cpu/armv7/cache_v7.o AS spl/arch/arm/cpu/armv7/cache_v7_asm.o CC spl/arch/arm/cpu/armv7/cpu.o CC spl/arch/arm/cpu/armv7/cp15.o CC spl/arch/arm/cpu/armv7/syslib.o AS spl/arch/arm/cpu/armv7/lowlevel_init.o CC spl/arch/arm/cpu/armv7/sunxi/timer.o AS spl/arch/arm/cpu/armv7/sunxi/fel_utils.o LD spl/arch/arm/cpu/armv7/sunxi/built-in.o LD spl/arch/arm/cpu/armv7/built-in.o AS spl/arch/arm/cpu/armv7/start.o LD spl/arch/arm/cpu/built-in.o AS spl/arch/arm/lib/vectors.o AS spl/arch/arm/lib/crt0.o CC spl/arch/arm/lib/spl.o CC spl/arch/arm/lib/zimage.o CC spl/arch/arm/lib/sections.o CC spl/arch/arm/lib/stack.o CC spl/arch/arm/lib/interrupts.o CC spl/arch/arm/lib/reset.o CC spl/arch/arm/lib/cache.o CC spl/arch/arm/lib/cache-cp15.o CC spl/arch/arm/lib/psci-dt.o LD spl/arch/arm/lib/built-in.o AS spl/arch/arm/lib/ashldi3.o AS spl/arch/arm/lib/ashrdi3.o CC spl/arch/arm/lib/div0.o AS spl/arch/arm/lib/div64.o AS spl/arch/arm/lib/lib1funcs.o AS spl/arch/arm/lib/lshrdi3.o AS spl/arch/arm/lib/muldi3.o AS spl/arch/arm/lib/uldivmod.o AR spl/arch/arm/lib/lib.a CC spl/arch/arm/lib/eabi_compat.o AS spl/arch/arm/lib/crt0_arm_efi.o CC spl/arch/arm/lib/reloc_arm_efi.o CC spl/board/sunxi/board.o LD spl/board/sunxi/built-in.o CC spl/common/spl/spl.o CC spl/common/spl/spl_mmc.o LD spl/common/spl/built-in.o CC spl/common/init/board_init.o LD spl/common/init/built-in.o CC spl/common/env_common.o CC spl/common/console.o CC spl/common/dlmalloc.o CC spl/common/malloc_simple.o CC spl/common/image.o CC spl/common/memsize.o CC spl/common/stdio.o CC spl/common/cli_simple.o CC spl/common/cli.o CC spl/common/cli_readline.o CC spl/common/command.o CC spl/common/s_record.o CC spl/common/xyzModem.o LD spl/common/built-in.o CC spl/cmd/nvedit.o LD spl/cmd/built-in.o CC spl/lib/hashtable.o CC spl/lib/errno.o CC spl/lib/display_options.o CC spl/lib/crc32.o CC spl/lib/ctype.o CC spl/lib/div64.o CC spl/lib/hang.o CC spl/lib/linux_compat.o CC spl/lib/linux_string.o CC spl/lib/membuff.o CC spl/lib/slre.o CC spl/lib/string.o CC spl/lib/tables_csum.o CC spl/lib/time.o CC spl/lib/tiny-printf.o CC spl/lib/panic.o CC spl/lib/strto.o LD spl/lib/built-in.o CC spl/disk/part.o LD spl/disk/built-in.o CC spl/drivers/block/blk_legacy.o LD spl/drivers/block/built-in.o CC spl/drivers/gpio/sunxi_gpio.o LD spl/drivers/gpio/built-in.o CC spl/drivers/mmc/mmc_legacy.o CC spl/drivers/mmc/mmc.o CC spl/drivers/mmc/sunxi_mmc.o LD spl/drivers/mmc/built-in.o LD spl/drivers/power/built-in.o LD spl/drivers/power/pmic/built-in.o LD spl/drivers/power/regulator/built-in.o CC spl/drivers/serial/serial.o CC spl/drivers/serial/serial_ns16550.o CC spl/drivers/serial/ns16550.o LD spl/drivers/serial/built-in.o LD spl/drivers/built-in.o LD spl/dts/built-in.o LD spl/fs/built-in.o LDS spl/u-boot-spl.lds LD spl/u-boot-spl OBJCOPY spl/u-boot-spl-nodtb.bin COPY spl/u-boot-spl.bin MKSUNXI spl/sunxi-spl.bin OBJCOPY u-boot-nodtb.bin CAT u-boot-dtb.bin COPY u-boot.bin MKIMAGE u-boot.img COPY u-boot.dtb BINMAN u-boot-sunxi-with-spl.bin

stellaechen@STELLAECHEN-MC1 ~ % make make: *** No targets specified and no makefile found. Stop. stellaechen@STELLAECHEN-MC1 ~ % cd download stellaechen@STELLAECHEN-MC1 download % cd Python-2.7.13 stellaechen@STELLAECHEN-MC1 Python-2.7.13 % make running build running build_ext building '_Qt' extension gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -I/Users/stellaechen/download/Python-2.7.13/Mac/Include -I. -IInclude -I./Include -I/usr/local/include -I/Users/stellaechen/download/Python-2.7.13/Include -I/Users/stellaechen/download/Python-2.7.13 -c /Users/stellaechen/download/Python-2.7.13/Mac/Modules/qt/_Qtmodule.c -o build/temp.macosx-15.4-arm64-2.7/Users/stellaechen/download/Python-2.7.13/Mac/Modules/qt/_Qtmodule.o -Wno-deprecated-declarations /Users/stellaechen/download/Python-2.7.13/Mac/Modules/qt/_Qtmodule.c:28003:15: warning: variable 'm' set but not used [-Wunused-but-set-variable] 28003 | PyObject *m; | ^ 1 warning generated. gcc -bundle -undefined dynamic_lookup build/temp.macosx-15.4-arm64-2.7/Users/stellaechen/download/Python-2.7.13/Mac/Modules/qt/_Qtmodule.o -L/usr/local/lib -o build/lib.macosx-15.4-arm64-2.7/_Qt.so -framework QuickTime -framework Carbon ld: framework 'QuickTime' not found clang: error: linker command failed with exit code 1 (use -v to see invocation) building '_tkinter' extension gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DWITH_APPINIT=1 -I/System/Library/Frameworks/Tcl.framework/Headers -I/System/Library/Frameworks/Tcl.framework/Versions/Current/PrivateHeaders -I/System/Library/Frameworks/Tk.framework/Headers -I/System/Library/Frameworks/Tk.framework/Versions/Current/PrivateHeaders -I/usr/X11R6/include -I/Users/stellaechen/download/Python-2.7.13/Mac/Include -I. -IInclude -I./Include -I/usr/local/include -I/Users/stellaechen/download/Python-2.7.13/Include -I/Users/stellaechen/download/Python-2.7.13 -c /Users/stellaechen/download/Python-2.7.13/Modules/_tkinter.c -o build/temp.macosx-15.4-arm64-2.7/Users/stellaechen/download/Python-2.7.13/Modules/_tkinter.o -framework Tk clang: warning: -framework Tk: 'linker' input unused [-Wunused-command-line-argument] In file included from /Users/stellaechen/download/Python-2.7.13/Modules/_tkinter.c:71: /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/tk.h:86:11: fatal error: 'X11/Xlib.h' file not found 86 | # include <X11/Xlib.h> | ^~~~~~~~~~~~ 1 error generated. building '_ctypes' extension gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -I_ctypes/darwin -I/Users/stellaechen/download/Python-2.7.13/Mac/Include -I/Users/stellaechen/download/Python-2.7.13/Modules/_ctypes/libffi_osx/include -I/Users/stellaechen/download/Python-2.7.13/Modules/_ctypes/libffi_osx/powerpc -I. -IInclude -I./Include -I/usr/local/include -I/Users/stellaechen/download/Python-2.7.13/Include -I/Users/stellaechen/download/Python-2.7.13 -c /Users/stellaechen/download/Python-2.7.13/Modules/_ctypes/_ctypes.c -o build/temp.macosx-15.4-arm64-2.7/Users/stellaechen/download/Python-2.7.13/Modules/_ctypes/_ctypes.o -DMACOSX In file included from /Users/stellaechen/download/Python-2.7.13/Modules/_ctypes/_ctypes.c:113: /Users/stellaechen/download/Python-2.7.13/Modules/_ctypes/libffi_osx/include/ffi.h:65:3: error: "Unsupported MacOS X CPU type" 65 | # error "Unsupported MacOS X CPU type" | ^ In file included from /Users/stellaechen/download/Python-2.7.13/Modules/_ctypes/_ctypes.c:113: In file included from /Users/stellaechen/download/Python-2.7.13/Modules/_ctypes/libffi_osx/include/ffi.h:73: /Users/stellaechen/download/Python-2.7.13/Modules/_ctypes/libffi_osx/include/ffitarget.h:12:2: error: "Unsupported CPU type" 12 | #error "Unsupported CPU type" | ^ In file included from /Users/stellaechen/download/Python-2.7.13/Modules/_ctypes/_ctypes.c:113: In file included from /Users/stellaechen/download/Python-2.7.13/Modules/_ctypes/libffi_osx/include/ffi.h:74: /Users/stellaechen/download/Python-2.7.13/Modules/_ctypes/libffi_osx/include/fficonfig.h:51:2: error: "Unknown CPU type" 51 | #error "Unknown CPU type" | ^ In file included from /Users/stellaechen/download/Python-2.7.13/Modules/_ctypes/_ctypes.c:113: /Users/stellaechen/download/Python-2.7.13/Modules/_ctypes/libffi_osx/include/ffi.h:171:5: error: unknown type name 'ffi_abi' 171 | ffi_abi abi; | ^ /Users/stellaechen/download/Python-2.7.13/Modules/_ctypes/libffi_osx/include/ffi.h:193:2: error: unknown type name 'ffi_sarg' 193 | ffi_sarg sint; | ^ /Users/stellaechen/download/Python-2.7.13/Modules/_ctypes/libffi_osx/include/ffi.h:194:2: error: unknown type name 'ffi_arg' 194 | ffi_arg uint; | ^ /Users/stellaechen/download/Python-2.7.13/Modules/_ctypes/libffi_osx/include/ffi.h:307:11: error: unknown type name 'ffi_abi' 307 | ffi_abi abi, | ^ In file included from /Users/stellaechen/download/Python-2.7.13/Modules/_ctypes/_ctypes.c:129: /Users/stellaechen/download/Python-2.7.13/Modules/_ctypes/ctypes.h:99:5: error: unknown type name 'ffi_closure' 99 | ffi_closure *pcl_write; /* the C callable, writeable */ | ^ 8 errors generated. Python build finished, but the necessary bits to build these modules were not found: _bsddb _curses _curses_panel _sqlite3 _ssl bsddb185 bz2 dbm dl gdbm imageop linuxaudiodev nis ossaudiodev readline spwd sunaudiodev zlib To find the necessary bits, look in setup.py in detect_modules() for the module's name. Failed to build these modules: _ctypes _Qt _tkinter running build_scripts stellaechen@STELLAECHEN-MC1 Python-2.7.13 %

./BTSnifferBREDR.py --port=/dev/ttyUSB0 --target=E0:D4:E8:19:C7:69 --live-terminal Using options: Serial Port: /dev/ttyUSB0 Serial Baud: 921600 BT Host Program: ./host_stack/sdp_rfcomm_query Host BDAddress: e0:d4:e8:19:c7:68 Target BDAddress: e0:d4:e8:19:c7:69 [!] Reset Done! EN pin toggled HIGH->LOW->HIGH [!] Waiting 0.8s... Traceback (most recent call last): File "./BTSnifferBREDR.py", line 262, in <module> sniffer() File "/home/anritsen/Work/wifi-bt/git-prj/esp32_bluetooth_classic_sniffer-master/runtime/install/lib/python3.8/site-packages/click/core.py", line 1157, in __call__ return self.main(*args, **kwargs) File "/home/anritsen/Work/wifi-bt/git-prj/esp32_bluetooth_classic_sniffer-master/runtime/install/lib/python3.8/site-packages/click/core.py", line 1078, in main rv = self.invoke(ctx) File "/home/anritsen/Work/wifi-bt/git-prj/esp32_bluetooth_classic_sniffer-master/runtime/install/lib/python3.8/site-packages/click/core.py", line 1434, in invoke return ctx.invoke(self.callback, **ctx.params) File "/home/anritsen/Work/wifi-bt/git-prj/esp32_bluetooth_classic_sniffer-master/runtime/install/lib/python3.8/site-packages/click/core.py", line 783, in invoke return __callback(*args, **kwargs) File "./BTSnifferBREDR.py", line 245, in sniffer Sniffer.start() File "./BTSnifferBREDR.py", line 118, in start self.driver = ESP32BTDriver(self.serial_port, self.serial_baud) File "/home/anritsen/Work/wifi-bt/git-prj/esp32_bluetooth_classic_sniffer-master/src/ESP32BTDriver.py", line 87, in __init__ self.get_version() File "/home/anritsen/Work/wifi-bt/git-prj/esp32_bluetooth_classic_sniffer-master/src/ESP32BTDriver.py", line 142, in get_version self.version = version_string.decode('utf-8').split('\n')[0] UnicodeDecodeError: 'utf-8' codec can't decode byte 0xb1 in position 0: invalid start byte

bash: error while loading shared libraries: libtinfo.so.5: cannot open shared object file: No such file or directory bash: error while loading shared libraries: libtinfo.so.5: cannot open shared object file: No such file or directory awk: error while loading shared libraries: libreadline.so.6: cannot open shared object file: No such file or directory bash: error while loading shared libraries: libtinfo.so.5: cannot open shared object file: No such file or directory bash: error while loading shared libraries: libtinfo.so.5: cannot open shared object file: No such file or directory awk: error while loading shared libraries: libreadline.so.6: cannot open shared object file: No such file or directory Collecting package info: merging...awk: error while loading shared libraries: libreadline.so.6: cannot open shared object file: No such file or directory Collecting package info: done awk: error while loading shared libraries: libreadline.so.6: cannot open shared object file: No such file or directory bash: error while loading shared libraries: libtinfo.so.5: cannot open shared object file: No such file or directory bash: error while loading shared libraries: libtinfo.so.5: cannot open shared object file: No such file or directory awk: error while loading shared libraries: libreadline.so.6: cannot open shared object file: No such file or directory Collecting target info: merging...awk: error while loading shared libraries: libreadline.so.6: cannot open shared object file: No such file or directory Collecting target info: done Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /etc/perl /usr/local/lib/x86_64-linux-gnu/perl/5.22.1 /usr/local/share/perl/5.22.1 /usr/lib/x86_64-linux-gnu/perl5/5.22 /usr/share/perl5 /usr/lib/x86_64-linux-gnu/perl/5.22 /usr/share/perl/5.22 /usr/local/lib/site_perl /usr/lib/x86_64-linux-gnu/perl-base .) at ./scripts/metadata.pl line 2. BEGIN failed--compilation aborted at ./scripts/metadata.pl line 2. Failed to build tmp/.config-package.in Argument "4.2.1" isn't numeric in numeric ge (>=) at ./scripts/feeds line 25. Can't locate FindBin.pm in @INC (you may need to install the FindBin module) (@INC contains: /etc/perl /usr/local/lib/x86_64-linux-gnu/perl/5.22.1 /usr/local/share/perl/5.22.1 /usr/lib/x86_64-linux-gnu/perl5/5.22 /usr/share/perl5 /usr/lib/x86_64-linux-gnu/perl/5.22 /usr/share/perl/5.22 /usr/local/lib/site_perl /usr/lib/x86_64-linux-gnu/perl-base .) at ./scripts/metadata.pl line 2. BEGIN failed--compilation aborted at ./scripts/metadata.pl line 2. make[1]: *** [/home/zjc/openwrt/include/toplevel.mk:75: prepare-tmpinfo] Error 1 make: *** [/home/zjc/openwrt/include/toplevel.mk:181: world] Error 2

最新推荐

recommend-type

电力电子领域Boost单闭环仿真模型对电压阶跃变化与负载突变的稳定控制研究 电力电子 最新版

Boost单闭环仿真模型在电力电子领域的应用,特别是在目标输出电压阶跃变化和负载突变这两种极端工况下的稳定闭环控制效果。首先简述了Boost单闭环仿真模型的基本构造及其工作原理,接着深入探讨了在不同条件下(如电压阶跃变化和负载突变)如何利用闭环控制系统实现快速响应和平稳过渡。文中还提出了几种提升系统稳定性的方法,包括优化控制系统设计、引入误差调节和补偿机制、合理配置参数以及增强抗干扰能力。最后强调了该模型的重要性和潜在的应用前景。 适合人群:从事电力电子相关工作的工程师和技术人员,尤其是关注电源转换效率和稳定性的专业人士。 使用场景及目标:适用于需要评估或改进现有电源管理系统稳定性的场合,旨在帮助技术人员理解和掌握Boost单闭环仿真模型的工作机理,从而更好地应对实际工程中的挑战。 其他说明:随着电力电子技术的进步,Boost单闭环仿真模型有望在未来发挥更大的作用,推动工业生产和技术革新。
recommend-type

超强编程助手源码 编程辅助工具 代码规整工具源码 web开源助手源码

KaiGe超强编程助手源码/编程辅助工具/代码规整工具源码/web开源助手源码
recommend-type

【数据中心虚拟化】NVIDIA vGPU在KVM中的架构与性能优化:虚拟GPU技术详解及应用

内容概要:本文介绍了NVIDIA在KVM虚拟化环境中实现GPU虚拟化的技术细节与优势。NVIDIA vGPU可以在多种主流hypervisor上运行,提供对GPU硬件的直接访问,确保了应用程序的兼容性和高性能表现。通过虚拟GPU(vGPU)技术,多个虚拟机可以共享同一物理GPU,提高了资源利用率和管理效率。文档详细解释了基于VFIO-MDEV架构的vGPU创建流程,包括设备初始化、内存映射、中断注入等机制。此外,还讨论了vGPU的迁移支持、性能优化措施以及在不同行业如油气、制造、政府和媒体娱乐中的应用案例。; 适合人群:对虚拟化技术感兴趣的IT专业人员,尤其是从事云计算、数据中心管理和GPU加速计算领域的工程师和技术经理。; 使用场景及目标:①了解如何在KVM环境中配置和使用NVIDIA vGPU;②掌握vGPU的创建、管理和迁移方法;③探索vGPU在提高虚拟桌面基础设施密度和性能方面的潜力;④评估vGPU技术对企业级应用的支持能力。; 其他说明:文中提到的技术和产品为NVIDIA公司专有,部分内容可能涉及保密信息,仅供授权用户参考。阅读时应注意版本更新和技术发展动态,以确保所获取的知识是最新的。
recommend-type

ComfyUILotus Depth实现高效单目深度估计与细节重建

文件编号:c0068 ComfyUI使用教程、开发指导、资源下载: https://datayang.blog.csdn.net/article/details/145220524 AIGC工具平台Tauri+Django开源ComfyUI项目介绍和使用 https://datayang.blog.csdn.net/article/details/146316250 更多工具介绍 项目源码搭建介绍: 《我的AI工具箱Tauri+Django开源git项目介绍和使用》https://datayang.blog.csdn.net/article/details/146156817 图形桌面工具使用教程: 《我的AI工具箱Tauri+Django环境开发,支持局域网使用》https://datayang.blog.csdn.net/article/details/141897682
recommend-type

【物联网设备】中性扫码盒子功能配置与条码识别技术应用:多接口通信及中文编码格式支持系统说明

内容概要:本文档为《中性扫码盒子使用手册》,详细介绍了扫码盒子的功能配置、条码配置、读取版本信息及使用说明。功能配置涵盖启停配置、恢复出厂设置、通讯接口(如USB HID-KBW、USB虚拟串口等)、识读模式(连续识读、感应、单次模式)、照明、提示输出(蜂鸣器、语音、灯光)及输出格式和中文编码格式的设置。条码配置部分详细列出了对不同条码类型的使能与禁用操作,包括QR、EAN13、Code128等多种常见条码。读取版本信息部分提供了获取当前版本的方法。最后,使用说明给出了具体的配置示例,帮助用户快速上手。; 适合人群:适用于扫码盒子产品的终端用户、技术支持人员及维护人员。; 使用场景及目标:①帮助用户了解并正确配置扫码盒子的各项功能;②指导用户根据实际应用场景选择合适的条码类型和识读模式;③确保用户能够方便地获取和更新设备版本信息,保障设备正常运行。; 其他说明:本文档仅供合法授权客户使用,不得非法传播。文档内容可能会不定期更新,用户可通过技术支持获取最新版本。在特殊应用场景下,如航空、航天、军工、医疗等领域,公司不对产品的适用性承担责任。
recommend-type

破解dex2jar: Android应用反编译与分析指南

标题中的“dex2jar”指的是一个用于将Android应用程序中的DEX文件(Dalvik可执行文件)转换成Java JAR文件的工具。这个过程被称为“DEX转JAR”,是一个逆向工程的过程,它允许开发者查看和分析Android应用程序的原始Java代码,这通常用于学习、测试和安全分析目的。破解一词在此上下文中可能用于描述不正当手段获取程序的源代码以进行修改或绕过安全机制等行为,但请注意,任何未经授权的修改和使用都可能违反法律和版权。 描述部分提供了使用dex2jar工具的基本步骤。dex2jar通常是一个批处理文件(dex2jar.bat),用于在Windows环境下执行操作。它将DEX文件(classes.dex)作为输入,并生成对应的JAR文件。这个过程需要用户已经下载并解压了dex2jar的压缩包,并将其中的dex2jar.bat文件放在一个可以访问的目录中。然后,用户需要将目标Android应用程序中的classes.dex文件复制到该目录下,并在命令行界面中运行以下命令: dex2jar.bat classes.dex 执行完毕后,会在同一目录下生成名为classes.dex.dex2jar.jar的文件。这个JAR文件实质上是将DEX文件中的类转换成了Java的.class文件,并打包成了JAR格式,供后续的分析或修改使用。 【标签】中的“Android 破解”可能被误解为破解Android应用程序的安全机制,实际上,这个标签更准确的意义是分析和理解Android应用程序的工作原理。而“jar dex”则是指JAR文件与DEX文件之间的转换关系。 【压缩包子文件的文件名称列表】中列举了几个文件名,其中“使用说明.txt”很可能是该工具的官方使用指南,提供更详细的使用说明、安装步骤和常见问题的解答。“dex2jar最新版下载dex2jar下载 2.0官方版_ - pc6下载站.url”则是一个指向PC6下载站上dex2jar工具下载页面的网页链接。“dex2jar-2.0”可能是指特定版本号的dex2jar工具压缩包。 总结以上信息,dex2jar是一个专门用于Android应用安全分析和逆向工程的工具,它将DEX文件转换成Java的JAR文件以便进行代码的查看和分析。尽管这个过程在安全研究和教育目的下是合法且有价值的,但任何使用这一工具的非法破解、侵犯版权或进行恶意行为都是不可接受的。
recommend-type

共享内存与共识算法详解

### 共享内存与共识算法详解 在分布式系统中,共享内存和共识算法是两个核心的概念。共享内存涉及到多个进程对同一数据的读写操作,而共识算法则帮助多个进程在可能存在故障的情况下达成一致的决策。下面将详细介绍这两个方面的相关知识。 #### 共享内存 共享内存的寄存器规范由Lamport在多篇论文中引入,同时定义了安全、规则和原子三种语义。 - **安全寄存器**:在三种寄存器语义中,安全寄存器提供的保证最弱。当读操作与写操作并发时,安全寄存器可能返回任意值,甚至可能是从未被写入或尝试写入的值。在多处理器机器中,进程可能并发访问实现寄存器抽象的底层硬件位置,从而导致返回任意值。在任意故障模型中
recommend-type

计算机专业本科生和研究生就业薪资待遇

<think>好的,我需要回答用户关于计算机专业本科和研究生就业薪资对比的问题。首先,我得先看看用户提供的引用资料,看看里面有没有相关的数据。 引用[4]提到,2019届计算机类本科毕业生的平均月收入是6858元,而高职是4883元。这应该可以作为本科生的参考数据。至于研究生,引用[1]指出重庆大学的计算机和软件硕士就业情况良好,薪资高于行业平均水平,但没有具体数字。不过引用[3]提到,前20名的高校多为985/211,尤其是理工类院校的毕业生薪资更高。这里可能需要结合其他信息来推断研究生的薪资水平。 另外,引用[2]提到计算机专业毕业生薪资一般在万元以上,但不确定这是否特指研究生还是包括
recommend-type

eWebEditor 10.3最新版特性与安全升级指南

从提供的信息来看,我们需要深入了解和探讨的内容主要集中在“eWebEditor最新版”这一主题上。eWebEditor是一款流行的在线HTML编辑器,它支持ASP和ASP.NET环境,并广泛用于Web内容管理。通过给出的标题和描述,以及标签和文件名称列表,我们可以推导出一系列相关的知识点。 ### 标题知识点解析 #### eWebEditor的定义与功能 “eWebEditor最新版”中提到的“eWebEditor”指的是在线HTML编辑器产品,它被广泛应用于需要在线编辑和发布网页内容的场合。编辑器通常包含许多功能,比如文本格式化、图像插入、链接管理等,提供用户友好和接近桌面程序的编辑体验。eWebEditor产品以ASP和ASP.NET作为其主要的技术平台。 #### “最新版”更新内容 “最新版”表明我们正在讨论的是eWebEditor的最新版本更新,该版本很可能是为了增加新功能、提升性能、修复已知问题或改善安全性能。一般来说,软件的更新也可能会引入对新操作系统或浏览器的兼容性,以及对现有API或开发环境的新支持。 ### 描述知识点解析 #### “亲测可用”的含义 从“亲测 可用”的描述中我们可以推断出,发布者可能已经对“eWebEditor最新版”进行了测试,并验证了其在实际使用中的性能和稳定性。该短语传递出一个积极的信号,即该版本值得信赖,用户可以期待它将正常工作,无需担心兼容性或功能缺失的问题。 ### 标签知识点解析 #### eWebEditor的版本标识 “eWebEditor ASPX 10.3 最新版”中的标签指出我们讨论的版本号为10.3,这是一个具体的产品版本,意味着它可能包含了一些特定的更新或新增特性。通过版本号,我们可以推断产品已经经过了多次迭代和改进。 #### ASPX技术框架 在标签中提到的“ASPX”,这表明eWebEditor最新版支持ASP.NET Web Forms技术,ASPX是ASP.NET网页的标准文件扩展名。这一信息指出编辑器适合使用.NET框架的网站开发环境。 ### 文件名称列表知识点解析 #### “升级说明.txt”文件 “升级说明.txt”是一个文本文件,它可能包含了eWebEditor从上一版本升级到最新版本时的变化说明,例如新增功能、改进的地方以及需要注意的变更。开发者或维护人员在升级时应该仔细阅读这些说明,以便于平滑过渡到新版本,并最大化地利用新功能。 #### “安全说明.txt”文件 “安全说明.txt”文件通常提供了关于软件安全性的相关信息,这可能包括了针对最新版的安全补丁、修复的安全漏洞列表以及安全最佳实践的建议。特别是对于在线编辑器这类直接参与网页内容生成的工具,安全尤为重要,因此,安全说明文件对于确保编辑器和整个网站的安全运行至关重要。 #### “ewebeditor”文件夹或组件 “ewebeditor”可能是实际包含eWebEditor编辑器文件的文件夹名称。通常,这类文件夹内会包含用于前端的JavaScript文件、用于后端处理的服务器端代码(ASP.NET或ASP代码),以及相关的样式文件和资源文件。对于开发者来说,了解这些文件和组件的组织结构对于集成和配置编辑器至关重要。 综合以上信息,我们可以了解到eWebEditor的最新版本更新了很多内容,可能包含性能和安全性的提升,并可能对特定的技术平台如ASP.NET提供了更好的支持。用户应该参考升级和安全说明文件,以便正确理解和应用这些更新。对于开发者而言,掌握如何在项目中部署和配置eWebEditor编辑器也是一个重要的技能点。
recommend-type

分布式系统中的时间抽象与故障处理

### 分布式系统中的时间抽象与故障处理 #### 1. 故障检测概述 在分布式系统中,存在三种不同的系统假设:异步系统假设、同步系统假设和部分同步系统假设。异步系统不包含任何时间假设,我们的进程和链路抽象直接体现了这一点。然而,这些抽象不足以定义同步和部分同步系统。 为了添加时间假设,一种方法是用时间保证来扩展进程和链路抽象,但这会导致规范过于复杂。因此,我们引入了故障检测器的抽象概念,它能提供关于哪些进程崩溃、哪些进程正常的信息,不过这些信息不一定准确。 故障检测器抽象相较于直接对进程和链路做时间假设具有以下两个优势: - 减轻了用时间假设扩展进程和链路抽象的需求,保留了这些抽象的简