Checking if your code is running on 64-bit PHP

本文介绍了一种使用PHP_INT_SIZE常量来确定运行中的PHP版本是32位还是64位的方法。通过检查此常量的值,可以轻松判断当前PHP环境的位数。

Check the PHP_INT_SIZE constant. It'll vary based on the size of the register (i.e. 32-bit vs 64-bit).

 

<?php echo $_SERVER['HTTP_USER_AGENT']; ?>

 it is contained in the variable, you could explode that and derive it from that

 

or

<?php
switch(PHP_INT_SIZE) {
    case 4:
        echo '32-bit version of PHP';
        break;
    case 8:
        echo '64-bit version of PHP';
        break;
    default:
        echo 'PHP_INT_SIZE is ' . PHP_INT_SIZE;
        break;
}

 

This code snippet will at-least tell you if a 32/64 bit version of PHP is running.

 

来源: http://stackoverflow.com/questions/6303241/find-windows-32-or-64-bit-using-php

 

 

 

 

对比正常编译的log能找到什么问题吗 (spider) zhanggexu@ubuntu:~/newcode/be230_new/Iplatform/build$ make PRODUCT_NAME=be230v1 iplatform_package/xtables-addons/{clean,compile,install} V=s openssl support zlib make[1]: Entering directory /home/zhanggexu/newcode/be230_new/Iplatform/openwrt' make[2]: Entering directory /home/zhanggexu/newcode/be230_new/Iplatform/openwrt’ make[3]: Entering directory /home/zhanggexu/newcode/be230_new/Iplatform/openwrt' make[3]: Leaving directory /home/zhanggexu/newcode/be230_new/Iplatform/openwrt’ make[2]: Leaving directory /home/zhanggexu/newcode/be230_new/Iplatform/openwrt' make[2]: Entering directory /home/zhanggexu/newcode/be230_new/Iplatform/openwrt’ make[3]: Entering directory /home/zhanggexu/newcode/be230_new/Iplatform/packages/opensource/xtables-addons' rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/staging_dir/target-arm-openwrt-linux-uclibc-be230v1/stamp/.xtables-addons_installed rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/bin/model_brcm_bcm490x-be230v1/packages/kmod-ipt-compat-xtables_* rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/bin/model_brcm_bcm490x-be230v1/packages/kmod-ipt-rawpost_* rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/bin/model_brcm_bcm490x-be230v1/packages/iptables-mod-account_* rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/bin/model_brcm_bcm490x-be230v1/packages/kmod-ipt-account_* rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/bin/model_brcm_bcm490x-be230v1/packages/iptables-mod-httphost_* rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/bin/model_brcm_bcm490x-be230v1/packages/kmod-ipt-httphost_* rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/bin/model_brcm_bcm490x-be230v1/packages/iptables-mod-urlfilter_* rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/bin/model_brcm_bcm490x-be230v1/packages/kmod-ipt-urlfilter_* rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/bin/model_brcm_bcm490x-be230v1/packages/iptables-mod-app_* rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/bin/model_brcm_bcm490x-be230v1/packages/kmod-ipt-app_* rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/bin/model_brcm_bcm490x-be230v1/packages/iptables-mod-pctl_* rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/bin/model_brcm_bcm490x-be230v1/packages/kmod-ipt-pctl_* rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/bin/model_brcm_bcm490x-be230v1/packages/iptables-mod-blogskip_* rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/bin/model_brcm_bcm490x-be230v1/packages/kmod-ipt-blogskip_* rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/bin/model_brcm_bcm490x-be230v1/packages/iptables-mod-blog_* rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/bin/model_brcm_bcm490x-be230v1/packages/kmod-ipt-blog_* rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/bin/model_brcm_bcm490x-be230v1/packages/iptables-mod-blogtg_* rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/bin/model_brcm_bcm490x-be230v1/packages/kmod-ipt-blogtg_* rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/bin/model_brcm_bcm490x-be230v1/packages/iptables-mod-chaos_* rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/bin/model_brcm_bcm490x-be230v1/packages/kmod-ipt-chaos_* rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/bin/model_brcm_bcm490x-be230v1/packages/iptables-mod-condition_* rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/bin/model_brcm_bcm490x-be230v1/packages/kmod-ipt-condition_* rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/bin/model_brcm_bcm490x-be230v1/packages/iptables-mod-delude_* rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/bin/model_brcm_bcm490x-be230v1/packages/kmod-ipt-delude_* rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/bin/model_brcm_bcm490x-be230v1/packages/iptables-mod-dhcpmac_* rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/bin/model_brcm_bcm490x-be230v1/packages/kmod-ipt-dhcpmac_* rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/bin/model_brcm_bcm490x-be230v1/packages/iptables-mod-dnetmap_* rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/bin/model_brcm_bcm490x-be230v1/packages/kmod-ipt-dnetmap_* rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/bin/model_brcm_bcm490x-be230v1/packages/iptables-mod-fuzzy_* rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/bin/model_brcm_bcm490x-be230v1/packages/kmod-ipt-fuzzy_* rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/bin/model_brcm_bcm490x-be230v1/packages/iptables-mod-geoip_* rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/bin/model_brcm_bcm490x-be230v1/packages/kmod-ipt-geoip_* rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/bin/model_brcm_bcm490x-be230v1/packages/iptables-mod-iface_* rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/bin/model_brcm_bcm490x-be230v1/packages/kmod-ipt-iface_* rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/bin/model_brcm_bcm490x-be230v1/packages/iptables-mod-ipmark_* rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/bin/model_brcm_bcm490x-be230v1/packages/kmod-ipt-ipmark_* rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/bin/model_brcm_bcm490x-be230v1/packages/iptables-mod-ipp2p_* rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/bin/model_brcm_bcm490x-be230v1/packages/kmod-ipt-ipp2p_* rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/bin/model_brcm_bcm490x-be230v1/packages/iptables-mod-ipv4options_* rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/bin/model_brcm_bcm490x-be230v1/packages/kmod-ipt-ipv4options_* rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/bin/model_brcm_bcm490x-be230v1/packages/iptables-mod-length2_* rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/bin/model_brcm_bcm490x-be230v1/packages/kmod-ipt-length2_* rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/bin/model_brcm_bcm490x-be230v1/packages/iptables-mod-logmark_* rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/bin/model_brcm_bcm490x-be230v1/packages/kmod-ipt-logmark_* rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/bin/model_brcm_bcm490x-be230v1/packages/iptables-mod-lscan_* rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/bin/model_brcm_bcm490x-be230v1/packages/kmod-ipt-lscan_* rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/bin/model_brcm_bcm490x-be230v1/packages/iptables-mod-lua_* rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/bin/model_brcm_bcm490x-be230v1/packages/kmod-ipt-lua_* rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/bin/model_brcm_bcm490x-be230v1/packages/iptables-mod-psd_* rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/bin/model_brcm_bcm490x-be230v1/packages/kmod-ipt-psd_* rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/bin/model_brcm_bcm490x-be230v1/packages/iptables-mod-quota2_* rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/bin/model_brcm_bcm490x-be230v1/packages/kmod-ipt-quota2_* rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/bin/model_brcm_bcm490x-be230v1/packages/iptables-mod-rawnat_* rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/bin/model_brcm_bcm490x-be230v1/packages/kmod-ipt-rawnat_* rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/bin/model_brcm_bcm490x-be230v1/packages/iptables-mod-steal_* rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/bin/model_brcm_bcm490x-be230v1/packages/kmod-ipt-steal_* rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/bin/model_brcm_bcm490x-be230v1/packages/iptables-mod-sysrq_* rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/bin/model_brcm_bcm490x-be230v1/packages/kmod-ipt-sysrq_* rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/bin/model_brcm_bcm490x-be230v1/packages/iptables-mod-trigger_* rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/bin/model_brcm_bcm490x-be230v1/packages/kmod-ipt-trigger_* rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/bin/model_brcm_bcm490x-be230v1/packages/iptables-mod-tarpit_* rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/bin/model_brcm_bcm490x-be230v1/packages/kmod-ipt-tarpit_* rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/bin/model_brcm_bcm490x-be230v1/packages/iptables-mod-LOOPBACKDNAT_* rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/bin/model_brcm_bcm490x-be230v1/packages/kmod-ipt-LOOPBACKDNAT_* rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/bin/model_brcm_bcm490x-be230v1/packages/iptables-mod-V6PORTS_* rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/bin/model_brcm_bcm490x-be230v1/packages/kmod-ipt-V6PORTS_* rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/bin/model_brcm_bcm490x-be230v1/packages/iptables-mod-CHECKPORTS_* rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/bin/model_brcm_bcm490x-be230v1/packages/kmod-ipt-CHECKPORTS_* rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/bin/model_brcm_bcm490x-be230v1/packages/iptaccount_* rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/bin/model_brcm_bcm490x-be230v1/packages/xtables-addons_* rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/staging_dir/target-arm-openwrt-linux-uclibc-be230v1/packages/xtables-addons.list /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/staging_dir/host/packages/xtables-addons.list rm -rf /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/build_dir/linux-model_brcm_bcm490x/xtables-addons-3.0 make[3]: Leaving directory /home/zhanggexu/newcode/be230_new/Iplatform/packages/opensource/xtables-addons’ make[2]: Leaving directory /home/zhanggexu/newcode/be230_new/Iplatform/openwrt' make[1]: Leaving directory /home/zhanggexu/newcode/be230_new/Iplatform/openwrt’ make[1]: Entering directory /home/zhanggexu/newcode/be230_new/Iplatform/openwrt' make[2]: Entering directory /home/zhanggexu/newcode/be230_new/Iplatform/openwrt’ make[3]: Entering directory /home/zhanggexu/newcode/be230_new/Iplatform/openwrt' make[3]: Leaving directory /home/zhanggexu/newcode/be230_new/Iplatform/openwrt’ make[2]: Leaving directory /home/zhanggexu/newcode/be230_new/Iplatform/openwrt' make[2]: Entering directory /home/zhanggexu/newcode/be230_new/Iplatform/openwrt’ make[3]: Entering directory /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/package/iptables' WARNING: skipping iptables-mod-conntrack-extra -- package not selected WARNING: skipping iptables-mod-filter -- package not selected WARNING: skipping iptables-mod-ipopt -- package not selected WARNING: skipping iptables-mod-nat-extra -- package not selected WARNING: skipping iptables-mod-ulog -- package not selected WARNING: skipping iptables-mod-hashlimit -- package not selected WARNING: skipping iptables-mod-led -- package not selected WARNING: skipping iptables-mod-tproxy -- package not selected WARNING: skipping iptables-mod-tee -- package not selected WARNING: skipping iptables-mod-u32 -- package not selected WARNING: skipping iptables-mod-nflog -- package not selected WARNING: skipping libiptc -- package not selected make[3]: Leaving directory /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/package/iptables’ make[3]: Entering directory /home/zhanggexu/newcode/be230_new/Iplatform/packages/opensource/xtables-addons' mkdir -p /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/build_dir/linux-model_brcm_bcm490x/xtables-addons-3.0 cp -fpR ./src-3.x/* /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/build_dir/linux-model_brcm_bcm490x/xtables-addons-3.0 echo -------"v3"-------- -------v3-------- touch /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/build_dir/linux-model_brcm_bcm490x/xtables-addons-3.0/.prepared_00dc9c25a5f708b2e4920ad8c3a4118b (cd /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/build_dir/linux-model_brcm_bcm490x/xtables-addons-3.0; rm -f aclocal.m4; if [ -f ./configure.ac ] || [ -f ./configure.in ]; then [ -d ./autom4te.cache ] && rm -rf autom4te.cache; [ -e ./config.rpath ] || ln -s /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/scripts/config.rpath ./config.rpath; touch NEWS AUTHORS COPYING ABOUT-NLS ChangeLog; AUTOM4TE=/home/zhanggexu/newcode/be230_new/Iplatform/openwrt/staging_dir/host/bin/autom4te AUTOCONF=/home/zhanggexu/newcode/be230_new/Iplatform/openwrt/staging_dir/host/bin/autoconf AUTOMAKE=/home/zhanggexu/newcode/be230_new/Iplatform/openwrt/staging_dir/host/bin/automake ACLOCAL=/home/zhanggexu/newcode/be230_new/Iplatform/openwrt/staging_dir/host/bin/aclocal AUTOHEADER=/home/zhanggexu/newcode/be230_new/Iplatform/openwrt/staging_dir/host/bin/autoheader LIBTOOLIZE=/home/zhanggexu/newcode/be230_new/Iplatform/openwrt/staging_dir/host/bin/libtoolize LIBTOOL=/home/zhanggexu/newcode/be230_new/Iplatform/openwrt/staging_dir/host/bin/libtool M4=/home/zhanggexu/newcode/be230_new/Iplatform/openwrt/staging_dir/host/bin/m4 AUTOPOINT=true /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/staging_dir/host/bin/autoreconf -v -f -i -s -B /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/staging_dir/host/share/aclocal -I /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/staging_dir/target-arm-openwrt-linux-uclibc-be230v1/host/share/aclocal -I /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/staging_dir/target-arm-openwrt-linux-uclibc-be230v1/usr/share/aclocal -I m4 -I . . || true; fi; ); autoreconf: Entering directory .’ autoreconf: configure.ac: not using Gettext autoreconf: running: /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/staging_dir/host/bin/aclocal -I /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/staging_dir/target-arm-openwrt-linux-uclibc-be230v1/host/share/aclocal -I /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/staging_dir/target-arm-openwrt-linux-uclibc-be230v1/usr/share/aclocal -I m4 -I . --force -I m4 autoreconf: configure.ac: tracing autoreconf: running: /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/staging_dir/host/bin/libtoolize --force OpenWrt-libtoolize: putting auxiliary files in AC_CONFIG_AUX_DIR, build-aux'. OpenWrt-libtoolize: linking file build-aux/ltmain.sh’ OpenWrt-libtoolize: putting macros in AC_CONFIG_MACRO_DIR, m4'. OpenWrt-libtoolize: linking file m4/libtool.m4’ OpenWrt-libtoolize: linking file m4/ltoptions.m4' OpenWrt-libtoolize: linking file m4/ltsugar.m4’ OpenWrt-libtoolize: linking file m4/ltversion.m4' OpenWrt-libtoolize: linking file m4/lt~obsolete.m4’ autoreconf: running: /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/staging_dir/host/bin/autoconf --include=/home/zhanggexu/newcode/be230_new/Iplatform/openwrt/staging_dir/target-arm-openwrt-linux-uclibc-be230v1/host/share/aclocal --include=/home/zhanggexu/newcode/be230_new/Iplatform/openwrt/staging_dir/target-arm-openwrt-linux-uclibc-be230v1/usr/share/aclocal --include=m4 --include=. --prepend-include=/home/zhanggexu/newcode/be230_new/Iplatform/openwrt/staging_dir/host/share/aclocal --force autoreconf: running: /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/staging_dir/host/bin/autoheader --include=/home/zhanggexu/newcode/be230_new/Iplatform/openwrt/staging_dir/target-arm-openwrt-linux-uclibc-be230v1/host/share/aclocal --include=/home/zhanggexu/newcode/be230_new/Iplatform/openwrt/staging_dir/target-arm-openwrt-linux-uclibc-be230v1/usr/share/aclocal --include=m4 --include=. --prepend-include=/home/zhanggexu/newcode/be230_new/Iplatform/openwrt/staging_dir/host/share/aclocal --force autoreconf: running: /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/staging_dir/host/bin/automake --add-missing --force-missing Makefile.am:6: warning: ‘:=’-style assignments are not portable Makefile.am:21: warning: ‘:=’-style assignments are not portable Makefile.am:21: warning: shell mktemp -dtu: non-POSIX variable name Makefile.am:21: (probably a GNU make extension) autoreconf: Leaving directory .' (cd /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/build_dir/linux-model_brcm_bcm490x/xtables-addons-3.0/./; if [ -x ./configure ]; then /usr/bin/find /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/build_dir/linux-model_brcm_bcm490x/xtables-addons-3.0/ -name config.guess | xargs -r chmod u+w; /usr/bin/find /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/build_dir/linux-model_brcm_bcm490x/xtables-addons-3.0/ -name config.guess | xargs -r -n1 cp /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/scripts/config.guess; /usr/bin/find /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/build_dir/linux-model_brcm_bcm490x/xtables-addons-3.0/ -name config.sub | xargs -r chmod u+w; /usr/bin/find /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/build_dir/linux-model_brcm_bcm490x/xtables-addons-3.0/ -name config.sub | xargs -r -n1 cp /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/scripts/config.sub; AR=arm-buildroot-linux-gnueabi-ar AS="arm-buildroot-linux-gnueabi-gcc -c " LD=arm-buildroot-linux-gnueabi-ld NM=arm-buildroot-linux-gnueabi-nm CC="arm-buildroot-linux-gnueabi-gcc" GCC="arm-buildroot-linux-gnueabi-gcc" CXX="arm-buildroot-linux-gnueabi-g++" RANLIB=arm-buildroot-linux-gnueabi-ranlib STRIP=arm-buildroot-linux-gnueabi-strip OBJCOPY=arm-buildroot-linux-gnueabi-objcopy OBJDUMP=arm-buildroot-linux-gnueabi-objdump SIZE=arm-buildroot-linux-gnueabi-size CFLAGS=" -DSUPPORT_HOMECARE_PRO_BLOCKING -DPCTL_BLOCK_URL -DSUPPORT_HOMECARE_PRO_URL_CLASS -DPCTL_SUPPORT_IPV6 -DUSER_32BIT_COMPAT_KERNEL_64BIT -DPCTL_FING_SUPPORT -DSUPPORT_BLOCKING_WHITE_LIST -I/home/zhanggexu/newcode/be230_new/Iplatform/openwrt/../../bcm504L04/bcm963xx_5.04L.04/kernel/linux-4.19/../"bcmkernel/include" -I/home/zhanggexu/newcode/be230_new/Iplatform/openwrt/../../bcm504L04/bcm963xx_5.04L.04/kernel/linux-4.19/../"bcmkernel/include"/uapi" CXXFLAGS=" -DSUPPORT_HOMECARE_PRO_BLOCKING -DPCTL_BLOCK_URL -DSUPPORT_HOMECARE_PRO_URL_CLASS -DPCTL_SUPPORT_IPV6 -DUSER_32BIT_COMPAT_KERNEL_64BIT -DPCTL_FING_SUPPORT -DSUPPORT_BLOCKING_WHITE_LIST -I/home/zhanggexu/newcode/be230_new/Iplatform/openwrt/../../bcm504L04/bcm963xx_5.04L.04/kernel/linux-4.19/../"bcmkernel/include" -I/home/zhanggexu/newcode/be230_new/Iplatform/openwrt/../../bcm504L04/bcm963xx_5.04L.04/kernel/linux-4.19/../"bcmkernel/include"/uapi" CPPFLAGS="-I/home/zhanggexu/newcode/be230_new/Iplatform/openwrt/staging_dir/target-arm-openwrt-linux-uclibc-be230v1/usr/include -I/home/zhanggexu/newcode/be230_new/Iplatform/openwrt/staging_dir/target-arm-openwrt-linux-uclibc-be230v1/include -I/home/zhanggexu/newcode/be230_new/Iplatform/openwrt/staging_dir/usr-be230v1/include -I/home/zhanggexu/newcode/be230_new/Iplatform/openwrt/../../bcm504L04/toolchain/opt/toolchains/crosstools-arm_softfp-gcc-10.3-linux-4.19-glibc-2.32-binutils-2.36.1/usr/include " LDFLAGS="-L/home/zhanggexu/newcode/be230_new/Iplatform/openwrt/staging_dir/target-arm-openwrt-linux-uclibc-be230v1/usr/lib -L/home/zhanggexu/newcode/be230_new/Iplatform/openwrt/staging_dir/target-arm-openwrt-linux-uclibc-be230v1/lib -Wl,-rpath-link,/home/zhanggexu/newcode/be230_new/Iplatform/openwrt/staging_dir/target-arm-openwrt-linux-uclibc-be230v1/usr/lib -L/home/zhanggexu/newcode/be230_new/Iplatform/openwrt/../../bcm504L04/toolchain/opt/toolchains/crosstools-arm_softfp-gcc-10.3-linux-4.19-glibc-2.32-binutils-2.36.1/usr/lib -L/home/zhanggexu/newcode/be230_new/Iplatform/openwrt/../../bcm504L04/toolchain/opt/toolchains/crosstools-arm_softfp-gcc-10.3-linux-4.19-glibc-2.32-binutils-2.36.1/lib " ./configure --target=arm-openwrt-linux-uclibc --host=arm-openwrt-linux-uclibc --build=i686-linux-gnu --program-prefix="" --program-suffix="" --prefix=/usr --exec-prefix=/usr --bindir=/usr/bin --sbindir=/usr/sbin --libexecdir=/usr/lib --sysconfdir=/etc --datadir=/usr/share --localstatedir=/var --mandir=/usr/man --infodir=/usr/info --disable-nls --with-kbuild="/home/zhanggexu/newcode/be230_new/Iplatform/openwrt/../../bcm504L04/bcm963xx_5.04L.04/kernel/linux-4.19" --with-xtables="/home/zhanggexu/newcode/be230_new/Iplatform/openwrt/staging_dir/target-arm-openwrt-linux-uclibc-be230v1/usr" --with-xtlibdir="/usr/lib/iptables" ; fi; ) configure: WARNING: unrecognized options: --disable-nls, --with-xtables configure: loading site script /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/include/site/arm-openwrt-linux-uclibc checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking for arm-openwrt-linux-uclibc-strip... arm-buildroot-linux-gnueabi-strip checking for a thread-safe mkdir -p... /bin/mkdir -p checking for gawk... gawk checking whether make sets $(MAKE)... yes checking whether make supports nested variables... yes checking for arm-openwrt-linux-uclibc-gcc... arm-buildroot-linux-gnueabi-gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... yes checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether arm-buildroot-linux-gnueabi-gcc accepts -g... yes checking for arm-buildroot-linux-gnueabi-gcc option to accept ISO C89... none needed checking whether arm-buildroot-linux-gnueabi-gcc understands -c and -o together... yes checking for style of include used by make... GNU checking dependency style of arm-buildroot-linux-gnueabi-gcc... gcc3 checking for arm-openwrt-linux-uclibc-ar... arm-buildroot-linux-gnueabi-ar checking the archiver (arm-buildroot-linux-gnueabi-ar) interface... ar checking build system type... i686-pc-linux-gnu checking host system type... arm-openwrt-linux-uclibc checking how to print strings... printf checking for a sed that does not truncate output... /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/staging_dir/host/bin/sed checking for grep that handles long lines and -e... /bin/grep checking for egrep... /bin/grep -E checking for fgrep... /bin/grep -F checking for ld used by arm-buildroot-linux-gnueabi-gcc... arm-buildroot-linux-gnueabi-ld checking if the linker (arm-buildroot-linux-gnueabi-ld) is GNU ld... yes checking for BSD- or MS-compatible name lister (nm)... arm-buildroot-linux-gnueabi-nm checking the name lister (arm-buildroot-linux-gnueabi-nm) interface... BSD nm checking whether ln -s works... yes checking the maximum length of command line arguments... 805306365 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking how to convert i686-pc-linux-gnu file names to arm-openwrt-linux-uclibc format... func_convert_file_noop checking how to convert i686-pc-linux-gnu file names to toolchain format... func_convert_file_noop checking for arm-buildroot-linux-gnueabi-ld option to reload object files... -r checking for arm-openwrt-linux-uclibc-objdump... arm-buildroot-linux-gnueabi-objdump checking how to recognize dependent libraries... pass_all checking for arm-openwrt-linux-uclibc-dlltool... no checking for dlltool... no checking how to associate runtime and link libraries... printf %s\n checking for arm-openwrt-linux-uclibc-ar... (cached) arm-buildroot-linux-gnueabi-ar checking for archiver @FILE support... @ checking for arm-openwrt-linux-uclibc-strip... (cached) arm-buildroot-linux-gnueabi-strip checking for arm-openwrt-linux-uclibc-ranlib... arm-buildroot-linux-gnueabi-ranlib checking command to parse arm-buildroot-linux-gnueabi-nm output from arm-buildroot-linux-gnueabi-gcc object... ok checking for sysroot... no checking for arm-openwrt-linux-uclibc-mt... no checking for mt... mt configure: WARNING: using cross tools not prefixed with host triplet checking if mt is a manifest tool... no checking how to run the C preprocessor... arm-buildroot-linux-gnueabi-gcc -E checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking for dlfcn.h... yes checking for objdir... .libs checking if arm-buildroot-linux-gnueabi-gcc supports -fno-rtti -fno-exceptions... no checking for arm-buildroot-linux-gnueabi-gcc option to produce PIC... -fPIC -DPIC checking if arm-buildroot-linux-gnueabi-gcc PIC flag -fPIC -DPIC works... yes checking if arm-buildroot-linux-gnueabi-gcc static flag -static works... yes checking if arm-buildroot-linux-gnueabi-gcc supports -c -o file.o... yes checking if arm-buildroot-linux-gnueabi-gcc supports -c -o file.o... (cached) yes checking whether the arm-buildroot-linux-gnueabi-gcc linker (arm-buildroot-linux-gnueabi-ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no checking linux/netfilter/x_tables.h usability... yes checking linux/netfilter/x_tables.h presence... yes checking for linux/netfilter/x_tables.h... yes checking pkg-config is at least version 0.9.0... yes checking for libxtables... yes checking Xtables module directory... /usr/lib/iptables checking kernel version that we will build against... 4.19.275.0 in /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/../../bcm504L04/bcm963xx_5.04L.04/kernel/linux-4.19 WARNING: That kernel version is not officially supported yet. Continue at own luck. checking that generated files are newer than configure... done configure: creating ./config.status config.status: creating Makefile config.status: creating Makefile.iptrules config.status: creating Makefile.mans config.status: creating geoip/Makefile config.status: creating extensions/Makefile config.status: creating extensions/ACCOUNT/Makefile config.status: creating extensions/pknock/Makefile config.status: creating config.h config.status: executing depfiles commands config.status: executing libtool commands configure: WARNING: unrecognized options: --disable-nls, --with-xtables rm -f /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/build_dir/linux-model_brcm_bcm490x/xtables-addons-3.0/.configured_* touch /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/build_dir/linux-model_brcm_bcm490x/xtables-addons-3.0/.configured_ make -j1 -C /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/build_dir/linux-model_brcm_bcm490x/xtables-addons-3.0 ARCH="arm64" CROSS_COMPILE="aarch64-buildroot-linux-gnu-" EXTRA_CFLAGS="-DSUPPORT_HOMECARE_PRO_BLOCKING -DPCTL_BLOCK_URL -DSUPPORT_HOMECARE_PRO_URL_CLASS -DPCTL_SUPPORT_IPV6 -DUSER_32BIT_COMPAT_KERNEL_64BIT -DPCTL_FING_SUPPORT -DSUPPORT_BLOCKING_WHITE_LIST -I/home/zhanggexu/newcode/be230_new/Iplatform/openwrt/../../bcm504L04/bcm963xx_5.04L.04/kernel/linux-4.19/../"bcmkernel/include" -I/home/zhanggexu/newcode/be230_new/Iplatform/openwrt/../../bcm504L04/bcm963xx_5.04L.04/kernel/linux-4.19/../"bcmkernel/include"/uapi" DESTDIR="/home/zhanggexu/newcode/be230_new/Iplatform/openwrt/build_dir/linux-model_brcm_bcm490x/xtables-addons-3.0/ipkg-install" DEPMOD="/bin/true" all make[4]: Entering directory /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/build_dir/linux-model_brcm_bcm490x/xtables-addons-3.0’ (CDPATH=“${ZSH_VERSION+.}:” && cd . && /bin/sh /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/build_dir/linux-model_brcm_bcm490x/xtables-addons-3.0/build-aux/missing autoheader) rm -f stamp-h1 touch config.h.in cd . && /bin/sh ./config.status config.h config.status: creating config.h config.status: config.h is unchanged make all-recursive make[5]: Entering directory /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/build_dir/linux-model_brcm_bcm490x/xtables-addons-3.0' Making all in extensions make[6]: Entering directory /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/build_dir/linux-model_brcm_bcm490x/xtables-addons-3.0/extensions’ Xtables-addons 3.0 - Linux 4.19.275 if [ -n “/home/zhanggexu/newcode/be230_new/Iplatform/openwrt/…/…/bcm504L04/bcm963xx_5.04L.04/kernel/linux-4.19” ]; then make -C /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/…/…/bcm504L04/bcm963xx_5.04L.04/kernel/linux-4.19 M=/home/zhanggexu/newcode/be230_new/Iplatform/openwrt/build_dir/linux-model_brcm_bcm490x/xtables-addons-3.0/extensions modules; fi; make[7]: Entering directory `/home/zhanggexu/newcode/be230_new/bcm504L04/bcm963xx_5.04L.04/kernel/linux-4.19’ CC [M] /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/build_dir/linux-model_brcm_bcm490x/xtables-addons-3.0/extensions/ACCOUNT/xt_ACCOUNT.o CC [M] /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/build_dir/linux-model_brcm_bcm490x/xtables-addons-3.0/extensions/LUA/xt_LUA_target.o /home/zhanggexu/newcode/be230_new/Iplatform/openwrt/build_dir/linux-model_brcm_bcm490x/xtables-addons-3.0/extensions/LUA/xt_LUA_target.c: In function ‘lua_tg’:
10-25
2025-07-20 23:42:48.389 Log opened. (Time zone: UTC+08:00) 2025-07-20 23:42:48.389 Setup version: Inno Setup version 6.4.0 2025-07-20 23:42:48.389 Original Setup EXE: F:\游戏\esp-idf-tools-setup-online-2.3.5.exe 2025-07-20 23:42:48.390 Setup command line: /SL5="$AC0CE6,3312344,856064,F:\游戏\esp-idf-tools-setup-online-2.3.5.exe" 2025-07-20 23:42:48.390 Compatibility mode: Yes (Installer) 2025-07-20 23:42:48.390 Windows version: 10.0.19045 2025-07-20 23:42:48.390 Windows architecture: x64 (64-bit) 2025-07-20 23:42:48.390 Machine types supported by system: x86 x64 2025-07-20 23:42:48.390 User privileges: Administrative 2025-07-20 23:42:48.390 Administrative install mode: No 2025-07-20 23:42:48.390 Install mode root key: HKEY_CURRENT_USER 2025-07-20 23:42:48.390 64-bit install mode: Yes 2025-07-20 23:42:49.395 Created protected temporary directory: C:\Users\林伟新\AppData\Local\Temp\is-OGO2N.tmp 2025-07-20 23:42:49.397 -- DLL function import -- 2025-07-20 23:42:49.397 Function and DLL name: idpAddFile@files:idp.dll 2025-07-20 23:42:49.398 Extracting temporary file: C:\Users\林伟新\AppData\Local\Temp\is-OGO2N.tmp\idp.dll 2025-07-20 23:42:49.404 Importing the DLL function. Dest DLL name: C:\Users\林伟新\AppData\Local\Temp\is-OGO2N.tmp\idp.dll 2025-07-20 23:42:49.409 Successfully imported the DLL function. Delay loaded? No 2025-07-20 23:42:49.409 -- DLL function import -- 2025-07-20 23:42:49.409 Function and DLL name: idpAddFileComp@files:idp.dll 2025-07-20 23:42:49.409 Importing the DLL function. Dest DLL name: C:\Users\林伟新\AppData\Local\Temp\is-OGO2N.tmp\idp.dll 2025-07-20 23:42:49.409 Successfully imported the DLL function. Delay loaded? No 2025-07-20 23:42:49.409 -- DLL function import -- 2025-07-20 23:42:49.409 Function and DLL name: idpAddMirror@files:idp.dll 2025-07-20 23:42:49.409 Importing the DLL function. Dest DLL name: C:\Users\林伟新\AppData\Local\Temp\is-OGO2N.tmp\idp.dll 2025-07-20 23:42:49.409 Successfully imported the DLL function. Delay loaded? No 2025-07-20 23:42:49.409 -- DLL function import -- 2025-07-20 23:42:49.409 Function and DLL name: idpAddFtpDir@files:idp.dll 2025-07-20 23:42:49.409 Importing the DLL function. Dest DLL name: C:\Users\林伟新\AppData\Local\Temp\is-OGO2N.tmp\idp.dll 2025-07-20 23:42:49.409 Successfully imported the DLL function. Delay loaded? No 2025-07-20 23:42:49.409 -- DLL function import -- 2025-07-20 23:42:49.409 Function and DLL name: idpAddFtpDirComp@files:idp.dll 2025-07-20 23:42:49.409 Importing the DLL function. Dest DLL name: C:\Users\林伟新\AppData\Local\Temp\is-OGO2N.tmp\idp.dll 2025-07-20 23:42:49.409 Successfully imported the DLL function. Delay loaded? No 2025-07-20 23:42:49.409 -- DLL function import -- 2025-07-20 23:42:49.409 Function and DLL name: idpClearFiles@files:idp.dll 2025-07-20 23:42:49.409 Importing the DLL function. Dest DLL name: C:\Users\林伟新\AppData\Local\Temp\is-OGO2N.tmp\idp.dll 2025-07-20 23:42:49.409 Successfully imported the DLL function. Delay loaded? No 2025-07-20 23:42:49.409 -- DLL function import -- 2025-07-20 23:42:49.409 Function and DLL name: idpFilesCount@files:idp.dll 2025-07-20 23:42:49.409 Importing the DLL function. Dest DLL name: C:\Users\林伟新\AppData\Local\Temp\is-OGO2N.tmp\idp.dll 2025-07-20 23:42:49.409 Successfully imported the DLL function. Delay loaded? No 2025-07-20 23:42:49.409 -- DLL function import -- 2025-07-20 23:42:49.409 Function and DLL name: idpFtpDirsCount@files:idp.dll 2025-07-20 23:42:49.409 Importing the DLL function. Dest DLL name: C:\Users\林伟新\AppData\Local\Temp\is-OGO2N.tmp\idp.dll 2025-07-20 23:42:49.409 Successfully imported the DLL function. Delay loaded? No 2025-07-20 23:42:49.409 -- DLL function import -- 2025-07-20 23:42:49.409 Function and DLL name: idpFileDownloaded@files:idp.dll 2025-07-20 23:42:49.409 Importing the DLL function. Dest DLL name: C:\Users\林伟新\AppData\Local\Temp\is-OGO2N.tmp\idp.dll 2025-07-20 23:42:49.409 Successfully imported the DLL function. Delay loaded? No 2025-07-20 23:42:49.410 -- DLL function import -- 2025-07-20 23:42:49.410 Function and DLL name: idpFilesDownloaded@files:idp.dll 2025-07-20 23:42:49.410 Importing the DLL function. Dest DLL name: C:\Users\林伟新\AppData\Local\Temp\is-OGO2N.tmp\idp.dll 2025-07-20 23:42:49.410 Successfully imported the DLL function. Delay loaded? No 2025-07-20 23:42:49.410 -- DLL function import -- 2025-07-20 23:42:49.410 Function and DLL name: idpDownloadFile@files:idp.dll 2025-07-20 23:42:49.410 Importing the DLL function. Dest DLL name: C:\Users\林伟新\AppData\Local\Temp\is-OGO2N.tmp\idp.dll 2025-07-20 23:42:49.410 Successfully imported the DLL function. Delay loaded? No 2025-07-20 23:42:49.410 -- DLL function import -- 2025-07-20 23:42:49.410 Function and DLL name: idpDownloadFiles@files:idp.dll 2025-07-20 23:42:49.410 Importing the DLL function. Dest DLL name: C:\Users\林伟新\AppData\Local\Temp\is-OGO2N.tmp\idp.dll 2025-07-20 23:42:49.410 Successfully imported the DLL function. Delay loaded? No 2025-07-20 23:42:49.410 -- DLL function import -- 2025-07-20 23:42:49.410 Function and DLL name: idpDownloadFilesComp@files:idp.dll 2025-07-20 23:42:49.410 Importing the DLL function. Dest DLL name: C:\Users\林伟新\AppData\Local\Temp\is-OGO2N.tmp\idp.dll 2025-07-20 23:42:49.410 Successfully imported the DLL function. Delay loaded? No 2025-07-20 23:42:49.410 -- DLL function import -- 2025-07-20 23:42:49.410 Function and DLL name: idpDownloadFilesCompUi@files:idp.dll 2025-07-20 23:42:49.410 Importing the DLL function. Dest DLL name: C:\Users\林伟新\AppData\Local\Temp\is-OGO2N.tmp\idp.dll 2025-07-20 23:42:49.410 Successfully imported the DLL function. Delay loaded? No 2025-07-20 23:42:49.410 -- DLL function import -- 2025-07-20 23:42:49.410 Function and DLL name: idpStartDownload@files:idp.dll 2025-07-20 23:42:49.410 Importing the DLL function. Dest DLL name: C:\Users\林伟新\AppData\Local\Temp\is-OGO2N.tmp\idp.dll 2025-07-20 23:42:49.410 Successfully imported the DLL function. Delay loaded? No 2025-07-20 23:42:49.410 -- DLL function import -- 2025-07-20 23:42:49.410 Function and DLL name: idpStopDownload@files:idp.dll 2025-07-20 23:42:49.410 Importing the DLL function. Dest DLL name: C:\Users\林伟新\AppData\Local\Temp\is-OGO2N.tmp\idp.dll 2025-07-20 23:42:49.410 Successfully imported the DLL function. Delay loaded? No 2025-07-20 23:42:49.410 -- DLL function import -- 2025-07-20 23:42:49.410 Function and DLL name: idpSetLogin@files:idp.dll 2025-07-20 23:42:49.410 Importing the DLL function. Dest DLL name: C:\Users\林伟新\AppData\Local\Temp\is-OGO2N.tmp\idp.dll 2025-07-20 23:42:49.410 Successfully imported the DLL function. Delay loaded? No 2025-07-20 23:42:49.410 -- DLL function import -- 2025-07-20 23:42:49.410 Function and DLL name: idpSetProxyMode@files:idp.dll 2025-07-20 23:42:49.410 Importing the DLL function. Dest DLL name: C:\Users\林伟新\AppData\Local\Temp\is-OGO2N.tmp\idp.dll 2025-07-20 23:42:49.410 Successfully imported the DLL function. Delay loaded? No 2025-07-20 23:42:49.410 -- DLL function import -- 2025-07-20 23:42:49.410 Function and DLL name: idpSetProxyName@files:idp.dll 2025-07-20 23:42:49.410 Importing the DLL function. Dest DLL name: C:\Users\林伟新\AppData\Local\Temp\is-OGO2N.tmp\idp.dll 2025-07-20 23:42:49.410 Successfully imported the DLL function. Delay loaded? No 2025-07-20 23:42:49.410 -- DLL function import -- 2025-07-20 23:42:49.410 Function and DLL name: idpSetProxyLogin@files:idp.dll 2025-07-20 23:42:49.410 Importing the DLL function. Dest DLL name: C:\Users\林伟新\AppData\Local\Temp\is-OGO2N.tmp\idp.dll 2025-07-20 23:42:49.410 Successfully imported the DLL function. Delay loaded? No 2025-07-20 23:42:49.410 -- DLL function import -- 2025-07-20 23:42:49.410 Function and DLL name: idpConnectControl@files:idp.dll 2025-07-20 23:42:49.410 Importing the DLL function. Dest DLL name: C:\Users\林伟新\AppData\Local\Temp\is-OGO2N.tmp\idp.dll 2025-07-20 23:42:49.410 Successfully imported the DLL function. Delay loaded? No 2025-07-20 23:42:49.410 -- DLL function import -- 2025-07-20 23:42:49.410 Function and DLL name: idpAddMessage@files:idp.dll 2025-07-20 23:42:49.410 Importing the DLL function. Dest DLL name: C:\Users\林伟新\AppData\Local\Temp\is-OGO2N.tmp\idp.dll 2025-07-20 23:42:49.410 Successfully imported the DLL function. Delay loaded? No 2025-07-20 23:42:49.410 -- DLL function import -- 2025-07-20 23:42:49.410 Function and DLL name: idpSetInternalOption@files:idp.dll 2025-07-20 23:42:49.410 Importing the DLL function. Dest DLL name: C:\Users\林伟新\AppData\Local\Temp\is-OGO2N.tmp\idp.dll 2025-07-20 23:42:49.410 Successfully imported the DLL function. Delay loaded? No 2025-07-20 23:42:49.410 -- DLL function import -- 2025-07-20 23:42:49.410 Function and DLL name: idpSetDetailedMode@files:idp.dll 2025-07-20 23:42:49.410 Importing the DLL function. Dest DLL name: C:\Users\林伟新\AppData\Local\Temp\is-OGO2N.tmp\idp.dll 2025-07-20 23:42:49.410 Successfully imported the DLL function. Delay loaded? No 2025-07-20 23:42:49.410 -- DLL function import -- 2025-07-20 23:42:49.410 Function and DLL name: idpSetComponents@files:idp.dll 2025-07-20 23:42:49.410 Importing the DLL function. Dest DLL name: C:\Users\林伟新\AppData\Local\Temp\is-OGO2N.tmp\idp.dll 2025-07-20 23:42:49.410 Successfully imported the DLL function. Delay loaded? No 2025-07-20 23:42:49.410 -- DLL function import -- 2025-07-20 23:42:49.410 Function and DLL name: idpReportError@files:idp.dll 2025-07-20 23:42:49.410 Importing the DLL function. Dest DLL name: C:\Users\林伟新\AppData\Local\Temp\is-OGO2N.tmp\idp.dll 2025-07-20 23:42:49.410 Successfully imported the DLL function. Delay loaded? No 2025-07-20 23:42:49.410 -- DLL function import -- 2025-07-20 23:42:49.410 Function and DLL name: idpTrace@files:idp.dll 2025-07-20 23:42:49.410 Importing the DLL function. Dest DLL name: C:\Users\林伟新\AppData\Local\Temp\is-OGO2N.tmp\idp.dll 2025-07-20 23:42:49.410 Successfully imported the DLL function. Delay loaded? No 2025-07-20 23:42:49.410 -- DLL function import -- 2025-07-20 23:42:49.410 Function and DLL name: idpAddFileSize@files:idp.dll 2025-07-20 23:42:49.410 Importing the DLL function. Dest DLL name: C:\Users\林伟新\AppData\Local\Temp\is-OGO2N.tmp\idp.dll 2025-07-20 23:42:49.410 Successfully imported the DLL function. Delay loaded? No 2025-07-20 23:42:49.410 -- DLL function import -- 2025-07-20 23:42:49.410 Function and DLL name: idpAddFileSize@files:idp.dll 2025-07-20 23:42:49.410 Importing the DLL function. Dest DLL name: C:\Users\林伟新\AppData\Local\Temp\is-OGO2N.tmp\idp.dll 2025-07-20 23:42:49.410 Successfully imported the DLL function. Delay loaded? No 2025-07-20 23:42:49.410 -- DLL function import -- 2025-07-20 23:42:49.410 Function and DLL name: idpGetFileSize@files:idp.dll 2025-07-20 23:42:49.410 Importing the DLL function. Dest DLL name: C:\Users\林伟新\AppData\Local\Temp\is-OGO2N.tmp\idp.dll 2025-07-20 23:42:49.410 Successfully imported the DLL function. Delay loaded? No 2025-07-20 23:42:49.410 -- DLL function import -- 2025-07-20 23:42:49.410 Function and DLL name: idpGetFilesSize@files:idp.dll 2025-07-20 23:42:49.410 Importing the DLL function. Dest DLL name: C:\Users\林伟新\AppData\Local\Temp\is-OGO2N.tmp\idp.dll 2025-07-20 23:42:49.410 Successfully imported the DLL function. Delay loaded? No 2025-07-20 23:42:49.410 -- DLL function import -- 2025-07-20 23:42:49.410 Function and DLL name: proc_start@files:cmdlinerunner.dll 2025-07-20 23:42:49.411 Extracting temporary file: C:\Users\林伟新\AppData\Local\Temp\is-OGO2N.tmp\cmdlinerunner.dll 2025-07-20 23:42:49.415 Importing the DLL function. Dest DLL name: C:\Users\林伟新\AppData\Local\Temp\is-OGO2N.tmp\cmdlinerunner.dll 2025-07-20 23:42:49.441 Successfully imported the DLL function. Delay loaded? No 2025-07-20 23:42:49.441 -- DLL function import -- 2025-07-20 23:42:49.441 Function and DLL name: proc_get_exit_code@files:cmdlinerunner.dll 2025-07-20 23:42:49.441 Importing the DLL function. Dest DLL name: C:\Users\林伟新\AppData\Local\Temp\is-OGO2N.tmp\cmdlinerunner.dll 2025-07-20 23:42:49.441 Successfully imported the DLL function. Delay loaded? No 2025-07-20 23:42:49.441 -- DLL function import -- 2025-07-20 23:42:49.441 Function and DLL name: proc_get_output@files:cmdlinerunner.dll 2025-07-20 23:42:49.441 Importing the DLL function. Dest DLL name: C:\Users\林伟新\AppData\Local\Temp\is-OGO2N.tmp\cmdlinerunner.dll 2025-07-20 23:42:49.441 Successfully imported the DLL function. Delay loaded? No 2025-07-20 23:42:49.441 -- DLL function import -- 2025-07-20 23:42:49.441 Function and DLL name: proc_end@files:cmdlinerunner.dll 2025-07-20 23:42:49.441 Importing the DLL function. Dest DLL name: C:\Users\林伟新\AppData\Local\Temp\is-OGO2N.tmp\cmdlinerunner.dll 2025-07-20 23:42:49.441 Successfully imported the DLL function. Delay loaded? No 2025-07-20 23:42:49.441 -- DLL function import -- 2025-07-20 23:42:49.441 Function and DLL name: SetEnvironmentVariableW@kernel32.dll 2025-07-20 23:42:49.441 Importing the DLL function. Dest DLL name: kernel32.dll 2025-07-20 23:42:49.441 Successfully imported the DLL function. Delay loaded? No 2025-07-20 23:42:49.441 -- DLL function import -- 2025-07-20 23:42:49.441 Function and DLL name: PeekMessageW@user32.dll 2025-07-20 23:42:49.441 Importing the DLL function. Dest DLL name: user32.dll 2025-07-20 23:42:49.441 Successfully imported the DLL function. Delay loaded? No 2025-07-20 23:42:49.441 -- DLL function import -- 2025-07-20 23:42:49.441 Function and DLL name: TranslateMessage@user32.dll 2025-07-20 23:42:49.441 Importing the DLL function. Dest DLL name: user32.dll 2025-07-20 23:42:49.441 Successfully imported the DLL function. Delay loaded? No 2025-07-20 23:42:49.441 -- DLL function import -- 2025-07-20 23:42:49.441 Function and DLL name: DispatchMessageW@user32.dll 2025-07-20 23:42:49.441 Importing the DLL function. Dest DLL name: user32.dll 2025-07-20 23:42:49.441 Successfully imported the DLL function. Delay loaded? No 2025-07-20 23:42:49.535 Configuration /CONFIG= 2025-07-20 23:42:49.536 Configuration /CHECKPATH=yes 2025-07-20 23:42:49.536 Configuration /GITCLEAN=yes 2025-07-20 23:42:49.536 Configuration /GITRECURSIVE=yes 2025-07-20 23:42:49.536 Configuration /GITRESET=yes 2025-07-20 23:42:49.536 Configuration /GITDEPTH= 2025-07-20 23:42:49.536 Configuration /GITREPO=https://github.com/espressif/esp-idf.git 2025-07-20 23:42:49.536 Configuration /GITSUBMODULEURL= 2025-07-20 23:42:49.536 Configuration /GITUSEMIRROR=no 2025-07-20 23:42:49.536 Configuration /IDFDIR= 2025-07-20 23:42:49.536 Configuration /IDFUSEEXISTING=no 2025-07-20 23:42:49.536 Configuration /IDFVERSION= 2025-07-20 23:42:49.536 Configuration /IDFVERSIONSURL=https://dl.espressif.com/dl/esp-idf/idf_versions.txt 2025-07-20 23:42:49.536 Configuration /OFFLINE=no 2025-07-20 23:42:49.536 Configuration /PYTHONNOUSERSITE=yes 2025-07-20 23:42:49.536 Configuration /PYTHONWHEELSURL=https://dl.espressif.com/pypi 2025-07-20 23:42:49.536 Configuration /PYTHONWHEELSVERSION=3.11-2023-03-05 2025-07-20 23:42:49.536 Configuration /SKIPSYSTEMCHECK=no 2025-07-20 23:42:49.536 Configuration /USEEMBEDDEDGIT=yes 2025-07-20 23:42:49.536 Configuration /USEEMBEDDEDPYTHON=yes 2025-07-20 23:42:49.543 Extracting temporary file: C:\Users\林伟新\AppData\Local\Temp\is-OGO2N.tmp\idf-env.exe 2025-07-20 23:42:49.721 Adding Python version=3.11.2 name=Use Python 3.11.2 Embedded (Recommended) executable=tools\idf-python\3.11.2\python.exe 2025-07-20 23:42:49.723 Found link in "有关 ESP-IDF 版ersions.html": "https://docs.espressif.com/projects/esp-idf/en/latest/versions.html" 2025-07-20 23:42:51.564 * 开始系统检查... 2025-07-20 23:42:51.567 * Windows 版本 2025-07-20 23:42:51.593 : 10.00.19045 2025-07-20 23:42:51.596 [正常] 2025-07-20 23:42:51.598 * 检查 Windows 注册表中的“启用长路径” 2025-07-20 23:42:51.602 [正常] 2025-07-20 23:42:51.606 * 活动代码页: 2025-07-20 23:42:51.608 Executing: chcp.com 2025-07-20 23:42:51.651 2025-07-20 23:42:51.653 * 检查证书 2025-07-20 23:42:51.655 * https://dl.espressif.com/dl/esp-idf 2025-07-20 23:42:51.657 $ C:\Users\林伟新\AppData\Local\Temp\is-OGO2N.tmp\idf-env.exe certificate verify --url https://dl.espressif.com/dl/esp-idf 2025-07-20 23:42:53.187 URL verified 2025-07-20 23:42:53.407 [正常] 2025-07-20 23:42:53.409 * https://github.com/espressif/esp-idf 2025-07-20 23:42:53.412 $ C:\Users\林伟新\AppData\Local\Temp\is-OGO2N.tmp\idf-env.exe certificate verify --url https://github.com/espressif/esp-idf 2025-07-20 23:42:53.628 Message box (Yes/No): 系统检查尚未完成。您想要跳过检查进行下一步吗? 2025-07-20 23:42:54.717 User chose Yes. 2025-07-20 23:42:54.717 ApplyPythonConfigurationByIndex index=0 2025-07-20 23:42:54.717 ApplyPythonConfigurationByIndex: PythonPath=tools\idf-python\3.11.2\ PythonExecutablePath=tools\idf-python\3.11.2\python.exe 2025-07-20 23:42:54.725 ApplyPythonConfigurationByIndex index=0 2025-07-20 23:42:54.725 ApplyPythonConfigurationByIndex: PythonPath=tools\idf-python\3.11.2\ PythonExecutablePath=tools\idf-python\3.11.2\python.exe 2025-07-20 23:42:54.726 OnIDFPagePrepare 2025-07-20 23:42:54.952 [警告] 2025-07-20 23:42:54.955 无法加载来自服务器 的数据。 2025-07-20 23:42:54.958 测试备选镜像 Gitee.com 2025-07-20 23:42:54.960 * https://gitee.com/EspressifSystems/esp-idf 2025-07-20 23:42:54.963 [正常] 2025-07-20 23:42:54.966 测试备选镜像 Jihulab.com 2025-07-20 23:42:54.968 * https://jihulab.com/esp-mirror/espressif/esp-idf 2025-07-20 23:42:54.970 [正常] 2025-07-20 23:42:54.972 * https://www.s3.amazonaws.com/ 2025-07-20 23:42:54.974 [正常] 2025-07-20 23:42:54.976 2025-07-20 23:42:54.980 * 检查终止。 2025-07-20 23:42:54.982 OnIDFPagePrepare 2025-07-20 23:42:55.991 OnIDFPageValidate index=0 2025-07-20 23:42:55.997 OnIDFDownloadPagePrepare 2025-07-20 23:42:57.671 Downloaded https://dl.espressif.com/dl/esp-idf/idf_versions.txt to C:\Users\林伟新\AppData\Local\Temp\is-OGO2N.tmp\idf_versions.txt 2025-07-20 23:42:57.673 Versions count: 11 2025-07-20 23:42:57.673 Version 0: v5.5-rc1 2025-07-20 23:42:57.673 Version 1: v5.4.2 2025-07-20 23:42:57.674 Version 2: v5.3.3 2025-07-20 23:42:57.674 Version 3: v5.2.5 2025-07-20 23:42:57.674 Version 4: v5.1.6 2025-07-20 23:42:57.674 Version 5: release/v5.5 2025-07-20 23:42:57.675 Version 6: release/v5.4 2025-07-20 23:42:57.675 Version 7: release/v5.3 2025-07-20 23:42:57.675 Version 8: release/v5.2 2025-07-20 23:42:57.680 Version 9: release/v5.1 2025-07-20 23:42:57.680 Version 10: master 2025-07-20 23:42:57.685 OnIDFDownloadPageValidate index=0 2025-07-20 23:42:57.695 Checking location of ToolsDir D:\Espressif\ is not a subdirectory of C:\Espressif\frameworks\esp-idf-v5.5-rc1-7\ 2025-07-20 23:42:58.030 Summary message: 使用嵌入式 Python 3.11.2 使用嵌入式 Git : D:\Espressif\tools\idf-git\2.44.0\cmd\git.exe 即将安装 ESP-IDF v5.5-rc1 into: C:\Espressif\frameworks\esp-idf-v5.5-rc1-7 IDF 工具目录(IDF_TOOLS_PATH): D:\Espressif Components: 驱动程序: FTDI Sillicon Labs Espressif WCH Targets: ESP32 ESP32-C3 ESP32-C6 ESP32-S2 ESP32-S3 ESP32-P4 优化下载: Assets (Espressif); Shallow (Git) 2025-07-20 23:43:00.812 Checking location of ToolsDir D:\Espressif\ is not a subdirectory of C:\Espressif\frameworks\esp-idf-v5.5-rc1-7\ 2025-07-20 23:43:01.221 Summary message: 使用嵌入式 Python 3.11.2 使用嵌入式 Git : D:\Espressif\tools\idf-git\2.44.0\cmd\git.exe 即将安装 ESP-IDF v5.5-rc1 into: C:\Espressif\frameworks\esp-idf-v5.5-rc1-7 IDF 工具目录(IDF_TOOLS_PATH): D:\Espressif Components: 驱动程序: FTDI Sillicon Labs Espressif WCH Targets: ESP32 ESP32-C3 ESP32-C6 ESP32-S2 ESP32-S3 ESP32-P4 优化下载: Assets (Espressif); Shallow (Git) 2025-07-20 23:43:01.802 Done, exit code=0 2025-07-20 23:43:01.802 -------- 2025-07-20 23:43:01.802 Running command: C:\Users\林伟新\AppData\Local\Temp\is-OGO2N.tmp\idf-env.exe driver install --ftdi --silabs --espressif --wch Using cached directory: D:\Espressif/tools/idf-driver/silabs-2021-05-0 O Using cached directory: D:\Espressif/tools/idf-driver/ftdi-2021-05-0 O Using cached directory: D:\Espressif/tools/idf-driver/idf-driver-esp32-usb-jtag-2021-07-1 O Using cached directory: D:\Espressif/tools/idf-driver/whc-ch343ser-2022-08-0 O O Installing driver with INF D:\Espressif\tools\idf-driver\silabs-2021-05-03\silabser.inf -> C:\Windows\INF\oem13.inf ... Already installe Installing driver with INF D:\Espressif\tools\idf-driver\ftdi-2021-05-03\ftdiport.inf -> C:\Windows\INF\oem53.inf ... Already installe Installing driver with INF D:\Espressif\tools\idf-driver\idf-driver-esp32-usb-jtag-2021-07-15\usb_jtag_debug_unit.inf -> C:\Windows\INF\oem55.inf ... Already installe Installing driver with INF D:\Espressif\tools\idf-driver\whc-ch343ser-2022-08-02\CH343SER\Driver\CH343SER.INF ... File not foun 2025-07-20 23:43:01.802 -------- 2025-07-20 23:43:01.812 PythonExecutablePathUpdateAfterInstall: PythonPath=D:\Espressif\tools\idf-python\3.11.2\ PythonExecutablePath=D:\Espressif\tools\idf-python\3.11.2\python.exe 2025-07-20 23:43:01.812 Checking existence of: D:\Espressif\tools\idf-python\3.11.2\python.exe 2025-07-20 23:43:01.812 Found. 2025-07-20 23:43:01.812 Checking existence of: D:\Espressif\tools\idf-git\2.44.0\cmd\git.exe 2025-07-20 23:43:01.812 Found. 2025-07-20 23:43:01.812 IDFZIPFileVersion: v5.5-rc1 2025-07-20 23:43:01.812 IDFZIPFileName: D:\Espressif\releases\esp-idf-v5.5-rc1.zip does not exist 2025-07-20 23:43:01.812 Executing: C:\Users\林伟新\AppData\Local\Temp\is-OGO2N.tmp\idf-env.exe config set --git "D:/Espressif/tools/idf-git/2.44.0/cmd/git.exe" 2025-07-20 23:43:01.864 Result: 2025-07-20 23:43:01.870 Found 1 files to register with RestartManager. 2025-07-20 23:43:01.870 Calling RestartManager's RmGetList. 2025-07-20 23:43:01.874 RmGetList finished successfully. 2025-07-20 23:43:01.874 RestartManager found no applications using one of our files. 2025-07-20 23:43:01.880 Starting the installation process. 2025-07-20 23:43:01.882 Directory for uninstall files: D:\Espressif 2025-07-20 23:43:01.889 Will append to existing uninstall log: D:\Espressif\unins000.dat 2025-07-20 23:43:01.889 -- File entry -- 2025-07-20 23:43:01.890 Dest filename: D:\Espressif\unins000.exe 2025-07-20 23:43:01.890 Non-default bitness: 32-bit 2025-07-20 23:43:01.891 Time stamp of our file: 2025-07-20 23:42:48.349 2025-07-20 23:43:01.891 Dest file exists. 2025-07-20 23:43:01.891 Time stamp of existing file: 2025-07-20 23:37:03.767 2025-07-20 23:43:01.891 Version of our file: 51.1052.0.0 2025-07-20 23:43:01.891 Version of existing file: 51.1052.0.0 2025-07-20 23:43:01.891 Installing the file. 2025-07-20 23:43:01.896 Leaving temporary file in place for now. 2025-07-20 23:43:01.896 -- File entry -- 2025-07-20 23:43:01.897 Dest filename: D:\Espressif\idf-env.exe 2025-07-20 23:43:01.897 Time stamp of our file: 2025-04-09 16:55:38.000 2025-07-20 23:43:01.897 Dest file exists. 2025-07-20 23:43:01.897 Time stamp of existing file: 2025-04-09 16:55:38.000 2025-07-20 23:43:01.897 Version of our file: (none) 2025-07-20 23:43:01.898 Version of existing file: (none) 2025-07-20 23:43:01.898 Installing the file. 2025-07-20 23:43:02.038 Successfully installed the file. 2025-07-20 23:43:02.038 -- File entry -- 2025-07-20 23:43:02.038 Dest filename: D:\Espressif\idf_cmd_init.bat 2025-07-20 23:43:02.038 Time stamp of our file: 2025-04-09 16:55:18.000 2025-07-20 23:43:02.038 Dest file exists. 2025-07-20 23:43:02.038 Time stamp of existing file: 2025-04-09 16:55:18.000 2025-07-20 23:43:02.038 Version of our file: (none) 2025-07-20 23:43:02.039 Version of existing file: (none) 2025-07-20 23:43:02.039 Installing the file. 2025-07-20 23:43:02.040 Successfully installed the file. 2025-07-20 23:43:02.040 -- File entry -- 2025-07-20 23:43:02.041 Dest filename: D:\Espressif\Initialize-Idf.ps1 2025-07-20 23:43:02.041 Time stamp of our file: 2025-04-09 16:55:18.000 2025-07-20 23:43:02.041 Dest file exists. 2025-07-20 23:43:02.041 Time stamp of existing file: 2025-04-09 16:55:18.000 2025-07-20 23:43:02.041 Version of our file: (none) 2025-07-20 23:43:02.042 Version of existing file: (none) 2025-07-20 23:43:02.042 Installing the file. 2025-07-20 23:43:02.042 Successfully installed the file. 2025-07-20 23:43:02.043 -- Registry entry -- 2025-07-20 23:43:02.043 Key: HKEY_CURRENT_USER\Environment 2025-07-20 23:43:02.043 Value name: IDF_TOOLS_PATH 2025-07-20 23:43:02.043 Creating or opening the key. 2025-07-20 23:43:02.043 Deleting the value. 2025-07-20 23:43:02.043 Creating or setting the value. 2025-07-20 23:43:02.043 Successfully created or set the value. 2025-07-20 23:43:02.043 Saving uninstall information. 2025-07-20 23:43:02.043 Renaming uninstaller. 2025-07-20 23:43:02.044 Deleting uninstall key left over from previous non administrative install. 2025-07-20 23:43:02.044 Creating new uninstall key: HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Uninstall\{9E068D99-5C4B-4E5F-96A3-B17CF291E6BD}_is1 2025-07-20 23:43:02.044 Writing uninstall key values. 2025-07-20 23:43:02.044 Detected previous administrative 64-bit install? No 2025-07-20 23:43:02.044 Detected previous administrative 32-bit install? No 2025-07-20 23:43:02.047 Installation process succeeded. 2025-07-20 23:43:02.048 Extracting temporary file: C:\Users\林伟新\AppData\Local\Temp\is-OGO2N.tmp\7za.exe 2025-07-20 23:43:02.076 Checking existence of Embedded Python: D:\Espressif\tools\idf-python\3.11.2\python.exe 2025-07-20 23:43:02.076 Embedded Python found. 2025-07-20 23:43:02.076 Checking existence of Embedded Git: D:\Espressif\tools\idf-git\2.44.0\cmd\git.exe 2025-07-20 23:43:02.076 Embedded Git found. 2025-07-20 23:43:02.076 Setting PATH for this process: D:\Espressif\tools\idf-python\3.11.2\;D:\Espressif\tools\idf-git\2.44.0\cmd\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files\Bandizip\;C:\Program Files\dotnet\;C:\Program Files\Common Files\Autodesk Shared\;G:\Bypass\Git\cmd;D:\vscode\bin;D:\Python\Scripts\;D:\Python\;C:\Users\林伟新\AppData\Local\Microsoft\WindowsApps;D:\pycharm\PyCharm 2024.3.3\bin;D:\MSYS2\ucrt64\bin;D:\Espressif\tools;D:\Espressif\frameworks\esp-idf-v5.3.1;"set PATH=C:\Windows\system32;D:\Espressif\tools\xtensa-esp-elf\esp-13.2.0_20240530\xtensa-esp-elf\bin";D:\vscode\Microsoft VS Code\bin 2025-07-20 23:43:02.076 PYTHONNOUSERSITE=True 2025-07-20 23:43:02.076 PYTHONPATH= 2025-07-20 23:43:02.076 PYTHONHOME= 2025-07-20 23:43:02.076 Extracting ESP-IDF reference repository: "C:\Users\林伟新\AppData\Local\Temp\is-OGO2N.tmp\7za.exe" x "-oC:\Users\林伟新\AppData\Local\Temp\is-OGO2N.tmp" -r -aoa "D:\Espressif\releases\esp-idf-v5.5-rc1.zip" 2025-07-20 23:43:02.076 Reference repository path: C:\Users\林伟新\AppData\Local\Temp\is-OGO2N.tmp\esp-idf-v5.5-rc1 2025-07-20 23:43:19.273 Done, exit code=0 2025-07-20 23:43:19.273 -------- 2025-07-20 23:43:19.273 Running command: "C:\Users\林伟新\AppData\Local\Temp\is-OGO2N.tmp\7za.exe" x "-oC:\Users\林伟新\AppData\Local\Temp\is-OGO2N.tmp" -r -aoa "D:\Espressif\releases\esp-idf-v5.5-rc1.zip" 7-Zip (a) 19.00 (x64) : Copyright (c) 1999-2018 Igor Pavlov : 2019-02-21 Scanning the drive for archives: 1 file, 1368864192 bytes (1306 MiB) Extracting archive: D:\Espressif\releases\esp-idf-v5.5-rc1.zip -- Path = D:\Espressif\releases\esp-idf-v5.5-rc1.zip Type = zip Physical Size = 1368864192 Everything is Ok Folders: 5379 Files: 27214 Size: 1704998694 Compressed: 1368864192 2025-07-20 23:43:19.273 -------- 2025-07-20 23:43:19.285 Copying C:\Users\林伟新\AppData\Local\Temp\is-OGO2N.tmp\esp-idf-v5.5-rc1 to C:\Espressif\frameworks\esp-idf-v5.5-rc1-7 2025-07-20 23:43:33.916 Done, exit code=0 2025-07-20 23:43:33.916 -------- 2025-07-20 23:43:33.916 Running command: cmd.exe /c ""xcopy.exe" /s /e /i /h /q "C:\Users\林伟新\AppData\Local\Temp\is-OGO2N.tmp\esp-idf-v5.5-rc1" "C:\Espressif\frameworks\esp-idf-v5.5-rc1-7"" 复制了 27214 个文件 2025-07-20 23:43:33.916 -------- 2025-07-20 23:43:33.923 Setting core.fileMode on repository: D:\Espressif\tools\idf-git\2.44.0\cmd\git.exe -C C:\Espressif\frameworks\esp-idf-v5.5-rc1-7 config --local core.fileMode false 2025-07-20 23:43:34.027 Done, exit code=0 2025-07-20 23:43:34.027 -------- 2025-07-20 23:43:34.027 Running command: D:\Espressif\tools\idf-git\2.44.0\cmd\git.exe -C C:\Espressif\frameworks\esp-idf-v5.5-rc1-7 config --local core.fileMode false 2025-07-20 23:43:34.027 -------- 2025-07-20 23:43:34.034 Setting core.fileMode on repository for submodules: D:\Espressif\tools\idf-git\2.44.0\cmd\git.exe -C C:\Espressif\frameworks\esp-idf-v5.5-rc1-7 submodule foreach --recursive git config --local core.fileMode false 2025-07-20 23:43:34.772 Done, exit code=127 2025-07-20 23:43:34.772 -------- 2025-07-20 23:43:34.772 Running command: D:\Espressif\tools\idf-git\2.44.0\cmd\git.exe -C C:\Espressif\frameworks\esp-idf-v5.5-rc1-7 submodule foreach --recursive git config --local core.fileMode false sed: read error on stdin: Bad file descripto D:/Espressif/tools/idf-git/2.44.0/mingw64/libexec/git-core\git-submodule: line 613: cmd_: command not foun 2025-07-20 23:43:34.772 -------- 2025-07-20 23:43:34.772 Message box (OK): 安装过程遇到错误(可能并不严重)。 退出代码: 127 2025-07-20 23:43:44.070 User chose OK. 2025-07-20 23:43:44.080 Resetting the repository: D:\Espressif\tools\idf-git\2.44.0\cmd\git.exe -C C:\Espressif\frameworks\esp-idf-v5.5-rc1-7 reset --hard 2025-07-20 23:43:49.481 Done, exit code=0 2025-07-20 23:43:49.481 -------- 2025-07-20 23:43:49.481 Running command: D:\Espressif\tools\idf-git\2.44.0\cmd\git.exe -C C:\Espressif\frameworks\esp-idf-v5.5-rc1-7 reset --hard Updating files: 100% (17512/17512), done HEAD is now at 8f9b49f7c change(version): Update version to 5.5. 2025-07-20 23:43:49.481 -------- 2025-07-20 23:43:49.495 Resetting the submodules: D:\Espressif\tools\idf-git\2.44.0\cmd\git.exe -C C:\Espressif\frameworks\esp-idf-v5.5-rc1-7 submodule foreach git reset --hard 2025-07-20 23:43:54.063 Done, exit code=0 2025-07-20 23:43:54.063 -------- 2025-07-20 23:43:54.063 Running command: D:\Espressif\tools\idf-git\2.44.0\cmd\git.exe -C C:\Espressif\frameworks\esp-idf-v5.5-rc1-7 submodule foreach git reset --hard Entering 'components/bootloader/subproject/components/micro-ecc/micro-ecc HEAD is now at 24c60e2 Add test vector for ECDSA secp256k Entering 'components/bt/controller/lib_esp32 HEAD is now at 6d007b7 change(bt): Update bt lib for ESP32(b992c7 Entering 'components/bt/controller/lib_esp32c2/esp32c2-bt-lib HEAD is now at 3ad0070 change(ble): [AUTO_MR] Update lib_esp32c2 to 7f72c03 Entering 'components/bt/controller/lib_esp32c3_family HEAD is now at 3ff5291 fix(bt): Update bt lib for ESP32-C3 and ESP32-S3(4713a69 Entering 'components/bt/controller/lib_esp32c5/esp32c5-bt-lib HEAD is now at 40a1921 change(ble): [AUTO_MR] Update lib_esp32c5 to 35fe65f Entering 'components/bt/controller/lib_esp32c6/esp32c6-bt-lib HEAD is now at 250e751 change(ble): [AUTO_MR] Update lib_esp32c6 to 35fe65f Entering 'components/bt/controller/lib_esp32h2/esp32h2-bt-lib HEAD is now at 82cbc1d change(ble): [AUTO_MR] Update lib_esp32h2 to 35fe65f Entering 'components/bt/esp_ble_mesh/lib/lib HEAD is now at d9fe7de Merge branch 'update/lib_update_to_f15b27e2d2_v5.5_v6.0' into 'main Entering 'components/bt/host/nimble/nimble HEAD is now at cc3ac541 fix(nimble): Fix compile errors when CSFCS or BONDS are Entering 'components/cmock/CMock HEAD is now at eeecc49 Merge pull request #312 from Skinner927/patch- Entering 'components/esp_coex/lib HEAD is now at c62361f fix(coex): add wifi event imm (831ec703 Entering 'components/esp_phy/lib HEAD is now at f6746ce update c5 libphy for coex problem Entering 'components/esp_wifi/lib HEAD is now at 61cdea8d fix(wifi): fix 11a rate index and twt sleep issue(7ae8ae99 Entering 'components/heap/tlsf HEAD is now at 2867f68 Merge branch 'fix/pointer-compatibility-64bit-target' into 'idf Entering 'components/json/cJSON HEAD is now at 8f2beb5 bump version of actions/upload-artifac Entering 'components/lwip/lwip HEAD is now at ebabd6d7 ip6: add some unit test cases for ip6 forwardin Entering 'components/mbedtls/mbedtls HEAD is now at 98ae8db06 fix(mbedtls): set RSA padding only when DS peripheral is configured Entering 'components/mqtt/esp-mqtt HEAD is now at cac1552 Merge branch 'fix/analyzer-unknown-pragma-warning' into 'master Entering 'components/openthread/lib HEAD is now at 4594483 feat(br): update thread-lib for esp32p4 and OT upstream ec2b0d48 Entering 'components/openthread/openthread Updating files: 100% (3905/3905), done HEAD is now at ec2b0d487 [trel] use `LinkedList` for TREL peer tracking (#11476 Entering 'components/protobuf-c/protobuf-c HEAD is now at abc67a1 ChangeLog: 1.4. Entering 'components/spiffs/spiffs HEAD is now at 0dbb3f7 Merge pull request #288 from igrr/bugfix/spiffs_readdir_errcod Entering 'components/unity/unity HEAD is now at bf56029 Merge pull request #656 from ThrowTheSwitch/platform_matri 2025-07-20 23:43:54.063 -------- 2025-07-20 23:43:56.189 Checking whether file exists C:\Espressif\frameworks\esp-idf-v5.5-rc1-7\tools\idf_tools.py 2025-07-20 23:43:56.189 idf_tools.py exists in IDF directory 2025-07-20 23:43:56.189 Adding extra Python wheels location. Setting environment variable PIP_EXTRA_INDEX_URL=https://dl.espressif.com/pypi 2025-07-20 23:43:56.189 idf_tools.py command: D:\Espressif\tools\idf-python\3.11.2\python.exe "C:\Espressif\frameworks\esp-idf-v5.5-rc1-7\tools\idf_tools.py" "--idf-path" "C:\Espressif\frameworks\esp-idf-v5.5-rc1-7" 2025-07-20 23:43:56.189 Selection of targets testing command: D:\Espressif\tools\idf-python\3.11.2\python.exe "C:\Espressif\frameworks\esp-idf-v5.5-rc1-7\tools\idf_tools.py" install --targets="" 2025-07-20 23:43:56.407 Selection of targets: Supported 2025-07-20 23:43:56.407 Installing tools:D:\Espressif\tools\idf-python\3.11.2\python.exe "C:\Espressif\frameworks\esp-idf-v5.5-rc1-7\tools\idf_tools.py" "--idf-path" "C:\Espressif\frameworks\esp-idf-v5.5-rc1-7" install --targets=esp32,esp32-c3,esp32-c6,esp32-s3,esp32-s2,esp32-p4 2025-07-20 23:44:02.745 Done, exit code=1 2025-07-20 23:44:02.745 -------- 2025-07-20 23:44:02.745 Running command: D:\Espressif\tools\idf-python\3.11.2\python.exe "C:\Espressif\frameworks\esp-idf-v5.5-rc1-7\tools\idf_tools.py" "--idf-path" "C:\Espressif\frameworks\esp-idf-v5.5-rc1-7" install --targets=esp32,esp32-c3,esp32-c6,esp32-s3,esp32-s2,esp32-p4 Updating D:\Espressif\idf-env.json Selected targets are: esp32s3, esp32c6, esp32s2, esp32p4, esp32c3, esp32 Current system platform: win64 Installing tools: xtensa-esp-elf-gdb, riscv32-esp-elf-gdb, xtensa-esp-elf, riscv32-esp-elf, esp32ulp-elf, cmake, openocd-esp32, ninja, idf-exe, ccache, dfu-util, esp-rom-elfs Skipping xtensa-esp-elf-gdb@16.2_20250324 (already installed) Skipping riscv32-esp-elf-gdb@16.2_20250324 (already installed) Skipping xtensa-esp-elf@esp-14.2.0_20241119 (already installed) Skipping riscv32-esp-elf@esp-14.2.0_20241119 (already installed) Skipping esp32ulp-elf@2.38_20240113 (already installed) Skipping cmake@3.30.2 (already installed) Skipping openocd-esp32@v0.12.0-esp32-20250422 (already installed) Skipping ninja@1.12.1 (already installed) Skipping idf-exe@1.0.3 (already installed) Installing ccache@4.10.2 Using GitHub assets mirror for URL: https://github.com/ccache/ccache/releases/download/v4.10.2/ccache-4.10.2-windows-x86_64.zip => https://dl.espressif.com/github_assets/ccache/ccache/releases/download/v4.10.2/ccache-4.10.2-windows-x86_64.zip file ccache-4.10.2-windows-x86_64.zip is already downloaded Extracting D:\Espressif\dist\ccache-4.10.2-windows-x86_64.zip to D:\Espressif\tools\ccache\4.10.2 ERROR: Failed to check the tool while installed. Removing directory D:\Espressif\tools\ccache\4.10.2 2025-07-20 23:44:02.745 -------- 2025-07-20 23:44:02.745 Message box (OK): 安装过程遇到错误(可能并不严重)。 退出代码: 1 2025-07-20 23:45:22.742 User chose OK. 2025-07-20 23:45:22.752 Message box (Yes/No): 已创建安装日志,其中可能包含有关该问题的详细信息。 是否需要查看安装日志? 2025-07-20 23:45:28.017 User chose Yes. 2025-07-20 23:45:28.053 CurStepChanged raised an exception. Windows安装过程中错误的log,我希望有解决方法
07-21
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值