How Buildroot works

深入解析Buildroot内核

As mentioned above, Buildroot is basically a set of Makefiles thatdownload, configure, and compile software with the correct options. Italso includes patches for various software packages - mainly the onesinvolved in the cross-compilation toolchain (gcc, binutils anduClibc).

There is basically one Makefile per software package, and they arenamed with the .mk extension. Makefiles are split into many differentparts.

  • The toolchain/ directory contains the Makefiles and associated files for all software related to the cross-compilation toolchain: binutils, gcc, gdb, kernel-headers and uClibc.
  • The arch/ directory contains the definitions for all the processor architectures that are supported by Buildroot.
  • The package/ directory contains the Makefiles and associated files for all user-space tools and libraries that Buildroot can compile and add to the target root filesystem. There is one sub-directory per package.
  • The linux/ directory contains the Makefiles and associated files for the Linux kernel.
  • The boot/ directory contains the Makefiles and associated files for the bootloaders supported by Buildroot.
  • The system/ directory contains support for system integration, e.g. the target filesystem skeleton and the selection of an init system.
  • The fs/ directory contains the Makefiles and associated files for software related to the generation of the target root filesystem image.

Each directory contains at least 2 files:

  • something.mk is the Makefile that downloads, configures, compiles and installs the package something.
  • Config.in is a part of the configuration tool description file. It describes the options related to the package.

The main Makefile performs the following steps (once theconfiguration is done):

  • Create all the output directories: staging, target, build, stamps, etc. in the output directory (output/ by default, another value can be specified using O=)
  • Generate all the targets listed in the BASE_TARGETS variable. When an internal toolchain is used, this means generating the cross-compilation toolchain. When an external toolchain is used, this means checking the features of the external toolchain and importing it into the Buildroot environment.
  • Generate all the targets listed in the TARGETS variable. This variable is filled by all the individual components' Makefiles. Generating these targets will trigger the compilation of the userspace packages (libraries, programs), the kernel, the bootloader and the generation of the root filesystem images, depending on the configuration.

cited from http://buildroot.uclibc.org/downloads/manual/manual.html#_going_further_in_buildroot_8217_s_innards

什么问题这个 Applying ./patches/010-fix-mod_webdav.patch using plaintext: patching file src/mod_webdav.c Applying ./patches/020-meson-mod_webdav_min.patch using plaintext: patching file src/meson.build Applying ./patches/030-fix-mips-gcc-not-support-__has_include-compile-error using plaintext: patching file src/mod_magnet.c Hunk #1 succeeded at 204 with fuzz 2. touch /data/red-round3/red-round3/Iplatform/openwrt/build_dir/target-arm-openwrt-linux-uclibc-be220v1/lighttpd-1.4.71/.prepared_ca9f6165c1130812efd2b0b7b8318bed (cd /data/red-round3/red-round3/Iplatform/openwrt/build_dir/target-arm-openwrt-linux-uclibc-be220v1/lighttpd-1.4.71/./; if [ -x ./configure ]; then /usr/bin/find /data/red-round3/red-round3/Iplatform/openwrt/build_dir/target-arm-openwrt-linux-uclibc-be220v1/lighttpd-1.4.71/ -name config.guess | xargs -r chmod u+w; /usr/bin/find /data/red-round3/red-round3/Iplatform/openwrt/build_dir/target-arm-openwrt-linux-uclibc-be220v1/lighttpd-1.4.71/ -name config.guess | xargs -r -n1 cp /data/red-round3/red-round3/Iplatform/openwrt/scripts/config.guess; /usr/bin/find /data/red-round3/red-round3/Iplatform/openwrt/build_dir/target-arm-openwrt-linux-uclibc-be220v1/lighttpd-1.4.71/ -name config.sub | xargs -r chmod u+w; /usr/bin/find /data/red-round3/red-round3/Iplatform/openwrt/build_dir/target-arm-openwrt-linux-uclibc-be220v1/lighttpd-1.4.71/ -name config.sub | xargs -r -n1 cp /data/red-round3/red-round3/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=" " CXXFLAGS=" " CPPFLAGS="-I/data/red-round3/red-round3/Iplatform/openwrt/staging_dir/target-arm-openwrt-linux-uclibc-be220v1/usr/include -I/data/red-round3/red-round3/Iplatform/openwrt/staging_dir/target-arm-openwrt-linux-uclibc-be220v1/include -I/data/red-round3/red-round3/Iplatform/openwrt/staging_dir/usr-be220v1/include -I/data/red-round3/red-round3/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/data/red-round3/red-round3/Iplatform/openwrt/staging_dir/target-arm-openwrt-linux-uclibc-be220v1/usr/lib -L/data/red-round3/red-round3/Iplatform/openwrt/staging_dir/target-arm-openwrt-linux-uclibc-be220v1/lib -Wl,-rpath-link,/data/red-round3/red-round3/Iplatform/openwrt/staging_dir/target-arm-openwrt-linux-uclibc-be220v1/usr/lib -L/data/red-round3/red-round3/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/data/red-round3/red-round3/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=x86_64-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-webdav-props --with-webdav-locks --with-openssl --with-openssl-libs=/usr/lib --with-lua ; fi; ) configure: WARNING: unrecognized options: --disable-nls configure: loading site script /data/red-round3/red-round3/Iplatform/openwrt/include/site/arm-openwrt-linux-uclibc checking build system type... x86_64-pc-linux-gnu checking host system type... 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 race-free mkdir -p... /bin/mkdir -p checking for gawk... gawk checking whether make sets $(MAKE)... yes checking whether make supports nested variables... yes checking whether UID '1000' is supported by ustar format... yes checking whether GID '1000' is supported by ustar format... yes checking how to create a ustar tar archive... gnutar 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 the compiler supports GNU C... yes checking whether arm-buildroot-linux-gnueabi-gcc accepts -g... yes checking for arm-buildroot-linux-gnueabi-gcc option to enable C11 features... none needed checking whether arm-buildroot-linux-gnueabi-gcc understands -c and -o together... yes checking whether make supports the include directive... yes (GNU style) checking dependency style of arm-buildroot-linux-gnueabi-gcc... gcc3 checking how to run the C preprocessor... arm-buildroot-linux-gnueabi-gcc -E checking for x86_64-pc-linux-gnu-gcc... no checking for gcc... gcc checking whether the compiler supports GNU C... yes checking whether gcc accepts -g... yes checking for gcc option to enable C11 features... -std=gnu11 checking whether gcc -std=gnu11 understands -c and -o together... yes checking dependency style of gcc -std=gnu11... gcc3 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... no checking for suffix of object files... o checking how to run the C preprocessor... gcc -std=gnu11 -E checking for a sed that does not truncate output... /data/red-round3/red-round3/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 how to print strings... printf 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 how to run the C preprocessor... arm-buildroot-linux-gnueabi-gcc -E checking whether make sets $(MAKE)... (cached) yes checking for stdio.h... yes checking for stdlib.h... yes checking for string.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for strings.h... yes checking for sys/stat.h... yes checking for sys/types.h... yes checking for unistd.h... yes checking for wchar.h... yes checking for minix/config.h... no checking whether it is safe to define __EXTENSIONS__... yes checking whether _XOPEN_SOURCE should be defined... no checking for arm-openwrt-linux-uclibc-ar... arm-buildroot-linux-gnueabi-ar checking the archiver (arm-buildroot-linux-gnueabi-ar) interface... ar checking for inline... inline checking for C/C++ restrict keyword... __restrict__ 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... 1572864 checking how to convert x86_64-pc-linux-gnu file names to arm-openwrt-linux-uclibc format... func_convert_file_noop checking how to convert x86_64-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-file... no checking for file... file configure: WARNING: using cross tools not prefixed with host triplet 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 a working dd... /bin/dd checking how to truncate binary pipes... /bin/dd bs=4096 count=1 checking for arm-openwrt-linux-uclibc-mt... no checking for mt... mt checking if mt is a manifest tool... no 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 for shl_load... no checking for shl_load in -ldld... no checking for dlopen... no checking for dlopen in -ldl... yes checking whether a program can dlopen itself... cross 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 for sys/wait.h that is POSIX.1 compatible... yes checking for getopt.h... yes checking for inttypes.h... (cached) yes checking for poll.h... yes checking for pwd.h... yes checking for stdlib.h... (cached) yes checking for stdint.h... (cached) yes checking for strings.h... (cached) yes checking for sys/inotify.h... yes checking for sys/loadavg.h... no checking for sys/poll.h... yes checking for sys/prctl.h... yes checking for sys/procctl.h... no checking for sys/sendfile.h... yes checking for sys/time.h... yes checking for sys/uio.h... yes checking for sys/un.h... yes checking for syslog.h... yes checking for uuid/uuid.h... yes checking for an ANSI C-conforming const... yes checking for inline... (cached) inline checking for off_t... yes checking for pid_t... yes checking for size_t... yes checking for struct tm.tm_gmtoff... yes checking for socklen_t... yes checking for library containing socket... none required checking for library containing gethostbyname... none required checking for library containing clock_gettime... none required checking for library containing elftc_copyfile... no checking for library containing dlopen... -ldl checking for dlfcn.h... (cached) yes checking pkg-config is at least version 0.9.0... yes configure: ---------------------------------------- checking for libev support... no configure: ---------------------------------------- checking for MySQL support... no configure: ---------------------------------------- checking for PgSQL support... no configure: ---------------------------------------- checking for LibDBI support... no configure: ---------------------------------------- checking for LibSASL support... no configure: ---------------------------------------- checking for LDAP support... no configure: ---------------------------------------- checking for PAM support... configure: ---------------------------------------- checking for extended attributes support... no configure: ---------------------------------------- checking for valgrind... no configure: ---------------------------------------- checking for libunwind... no configure: ---------------------------------------- checking for kerberos5... no checking custom include directory for kerberos5... no checking custom lib directory for kerberos5... no configure: ---------------------------------------- checking for OpenSSL... yes checking custom include directory for openssl... no checking custom lib directory for openssl... /usr/lib checking for openssl/ssl.h... yes checking for RAND_bytes in -lcrypto... yes checking for SSL_new in -lssl... yes configure: ---------------------------------------- checking for wolfSSL... no configure: ---------------------------------------- checking for mbedTLS... no configure: ---------------------------------------- checking for Nettle... no configure: ---------------------------------------- checking for GnuTLS... no configure: ---------------------------------------- checking for NSS... no configure: ---------------------------------------- checking for perl regular expressions support... no configure: ---------------------------------------- checking for perl regular expressions support... yes checking for PCRE2... no checking for pcre2-config... no configure: error: pcre2-config not found, install the pcre2-devel package or build with --without-pcre2 Makefile:254: recipe for target '/data/red-round3/red-round3/Iplatform/openwrt/build_dir/target-arm-openwrt-linux-uclibc-be220v1/lighttpd-1.4.71/.configured_nnnnnnnnnnnynnnnynnnnnn' failed make[3]: *** [/data/red-round3/red-round3/Iplatform/openwrt/build_dir/target-arm-openwrt-linux-uclibc-be220v1/lighttpd-1.4.71/.configured_nnnnnnnnnnnynnnnynnnnnn] Error 1 make[3]: Leaving directory '/data/red-round3/red-round3/Iplatform/packages/opensource/lighttpd' package/Makefile:133: recipe for target 'package/feeds/iplatform/lighttpd/compile' failed make[2]: *** [package/feeds/iplatform/lighttpd/compile] Error 2 make[2]: Leaving directory '/data/red-round3/red-round3/Iplatform/openwrt' /data/red-round3/red-round3/Iplatform/openwrt/include/toplevel.mk:184: recipe for target 'package/lighttpd/compile' failed make[1]: *** [package/lighttpd/compile] Error 2 make[1]: Leaving directory '/data/red-round3/red-round3/Iplatform/openwrt' Makefile:234: recipe for target 'iplatform_package/lighttpd/compile' failed make: *** [iplatform_package/lighttpd/compile] Error 2
09-27
tplink@5e15b687a070:~/code/be900v2/Iplatform/build$ make PRODUCT_NAME=be900v2 iplatform_package/xtables-addons/{clean,compile,install} V=s openssl support zlib make[1]: Entering directory '/home/tplink/code/be900v2/Iplatform/openwrt' make[2]: Entering directory '/home/tplink/code/be900v2/Iplatform/openwrt' make[3]: Entering directory '/home/tplink/code/be900v2/Iplatform/openwrt' make[3]: Leaving directory '/home/tplink/code/be900v2/Iplatform/openwrt' make[3]: Entering directory '/home/tplink/code/be900v2/Iplatform/openwrt' make[3]: Leaving directory '/home/tplink/code/be900v2/Iplatform/openwrt' make[2]: Leaving directory '/home/tplink/code/be900v2/Iplatform/openwrt' make[2]: Entering directory '/home/tplink/code/be900v2/Iplatform/openwrt' make[3]: Entering directory '/home/tplink/code/be900v2/prplos/platform/feeds/public/prplos-v3.1.0/feed_opensource/kernel/xtables-addons' [DEBUG] Using external toolchain: CONFIG_EXTERNAL_TOOLCHAIN is set [DEBUG] Broadcom platform detected: CONFIG_IPF_PLATFORM_BCM is set [DEBUG] Added include paths: /home/tplink/code/be900v2/Iplatform/openwrt/../../bcm504L04/bcm963xx_5.04L.04/kernel/linux-4.19/../bcmkernel/include and /home/tplink/code/be900v2/Iplatform/openwrt/../../bcm504L04/bcm963xx_5.04L.04/kernel/linux-4.19/../bcmkernel/include/uapi ==========XT_PCTL_ALONE = 1========== ==========CONFIG_PACKAGE_XTABLES_ADDONS_VERSION = "v2.14"========== ==========XT_PCTL_VERSION = ========== rm -f /home/tplink/code/be900v2/Iplatform/openwrt/staging_dir/target-arm-openwrt-linux-uclibc-be900v2/stamp/._installed rm -f /home/tplink/code/be900v2/Iplatform/openwrt/bin/model_brcm_bcm490x-be900v2/packages/kmod-ipt-compat-xtables_* rm -f /home/tplink/code/be900v2/Iplatform/openwrt/bin/model_brcm_bcm490x-be900v2/packages/kmod-ipt-nathelper-rtsp_* rm -f /home/tplink/code/be900v2/Iplatform/openwrt/bin/model_brcm_bcm490x-be900v2/packages/iptables-mod-account_* rm -f /home/tplink/code/be900v2/Iplatform/openwrt/bin/model_brcm_bcm490x-be900v2/packages/kmod-ipt-account_* rm -f /home/tplink/code/be900v2/Iplatform/openwrt/bin/model_brcm_bcm490x-be900v2/packages/iptables-mod-httphost_* rm -f /home/tplink/code/be900v2/Iplatform/openwrt/bin/model_brcm_bcm490x-be900v2/packages/kmod-ipt-httphost_* rm -f /home/tplink/code/be900v2/Iplatform/openwrt/bin/model_brcm_bcm490x-be900v2/packages/iptables-mod-urlfilter_* rm -f /home/tplink/code/be900v2/Iplatform/openwrt/bin/model_brcm_bcm490x-be900v2/packages/kmod-ipt-urlfilter_* rm -f /home/tplink/code/be900v2/Iplatform/openwrt/bin/model_brcm_bcm490x-be900v2/packages/iptables-mod-app_* rm -f /home/tplink/code/be900v2/Iplatform/openwrt/bin/model_brcm_bcm490x-be900v2/packages/kmod-ipt-app_* rm -f /home/tplink/code/be900v2/Iplatform/openwrt/bin/model_brcm_bcm490x-be900v2/packages/iptables-mod-pctl_* rm -f /home/tplink/code/be900v2/Iplatform/openwrt/bin/model_brcm_bcm490x-be900v2/packages/kmod-ipt-pctl_* rm -f /home/tplink/code/be900v2/Iplatform/openwrt/bin/model_brcm_bcm490x-be900v2/packages/iptables-mod-chaos_* rm -f /home/tplink/code/be900v2/Iplatform/openwrt/bin/model_brcm_bcm490x-be900v2/packages/kmod-ipt-chaos_* rm -f /home/tplink/code/be900v2/Iplatform/openwrt/bin/model_brcm_bcm490x-be900v2/packages/iptables-mod-condition_* rm -f /home/tplink/code/be900v2/Iplatform/openwrt/bin/model_brcm_bcm490x-be900v2/packages/kmod-ipt-condition_* rm -f /home/tplink/code/be900v2/Iplatform/openwrt/bin/model_brcm_bcm490x-be900v2/packages/iptables-mod-delude_* rm -f /home/tplink/code/be900v2/Iplatform/openwrt/bin/model_brcm_bcm490x-be900v2/packages/kmod-ipt-delude_* rm -f /home/tplink/code/be900v2/Iplatform/openwrt/bin/model_brcm_bcm490x-be900v2/packages/iptables-mod-dhcpmac_* rm -f /home/tplink/code/be900v2/Iplatform/openwrt/bin/model_brcm_bcm490x-be900v2/packages/kmod-ipt-dhcpmac_* rm -f /home/tplink/code/be900v2/Iplatform/openwrt/bin/model_brcm_bcm490x-be900v2/packages/iptables-mod-dnetmap_* rm -f /home/tplink/code/be900v2/Iplatform/openwrt/bin/model_brcm_bcm490x-be900v2/packages/kmod-ipt-dnetmap_* rm -f /home/tplink/code/be900v2/Iplatform/openwrt/bin/model_brcm_bcm490x-be900v2/packages/iptables-mod-fuzzy_* rm -f /home/tplink/code/be900v2/Iplatform/openwrt/bin/model_brcm_bcm490x-be900v2/packages/kmod-ipt-fuzzy_* rm -f /home/tplink/code/be900v2/Iplatform/openwrt/bin/model_brcm_bcm490x-be900v2/packages/iptables-mod-geoip_* rm -f /home/tplink/code/be900v2/Iplatform/openwrt/bin/model_brcm_bcm490x-be900v2/packages/kmod-ipt-geoip_* rm -f /home/tplink/code/be900v2/Iplatform/openwrt/bin/model_brcm_bcm490x-be900v2/packages/iptables-mod-iface_* rm -f /home/tplink/code/be900v2/Iplatform/openwrt/bin/model_brcm_bcm490x-be900v2/packages/kmod-ipt-iface_* rm -f /home/tplink/code/be900v2/Iplatform/openwrt/bin/model_brcm_bcm490x-be900v2/packages/iptables-mod-ipmark_* rm -f /home/tplink/code/be900v2/Iplatform/openwrt/bin/model_brcm_bcm490x-be900v2/packages/kmod-ipt-ipmark_* rm -f /home/tplink/code/be900v2/Iplatform/openwrt/bin/model_brcm_bcm490x-be900v2/packages/iptables-mod-ipp2p_* rm -f /home/tplink/code/be900v2/Iplatform/openwrt/bin/model_brcm_bcm490x-be900v2/packages/kmod-ipt-ipp2p_* rm -f /home/tplink/code/be900v2/Iplatform/openwrt/bin/model_brcm_bcm490x-be900v2/packages/iptables-mod-ipv4options_* rm -f /home/tplink/code/be900v2/Iplatform/openwrt/bin/model_brcm_bcm490x-be900v2/packages/kmod-ipt-ipv4options_* rm -f /home/tplink/code/be900v2/Iplatform/openwrt/bin/model_brcm_bcm490x-be900v2/packages/iptables-mod-length2_* rm -f /home/tplink/code/be900v2/Iplatform/openwrt/bin/model_brcm_bcm490x-be900v2/packages/kmod-ipt-length2_* rm -f /home/tplink/code/be900v2/Iplatform/openwrt/bin/model_brcm_bcm490x-be900v2/packages/iptables-mod-logmark_* rm -f /home/tplink/code/be900v2/Iplatform/openwrt/bin/model_brcm_bcm490x-be900v2/packages/kmod-ipt-logmark_* rm -f /home/tplink/code/be900v2/Iplatform/openwrt/bin/model_brcm_bcm490x-be900v2/packages/iptables-mod-lscan_* rm -f /home/tplink/code/be900v2/Iplatform/openwrt/bin/model_brcm_bcm490x-be900v2/packages/kmod-ipt-lscan_* rm -f /home/tplink/code/be900v2/Iplatform/openwrt/bin/model_brcm_bcm490x-be900v2/packages/iptables-mod-lua_* rm -f /home/tplink/code/be900v2/Iplatform/openwrt/bin/model_brcm_bcm490x-be900v2/packages/kmod-ipt-lua_* rm -f /home/tplink/code/be900v2/Iplatform/openwrt/bin/model_brcm_bcm490x-be900v2/packages/iptables-mod-psd_* rm -f /home/tplink/code/be900v2/Iplatform/openwrt/bin/model_brcm_bcm490x-be900v2/packages/kmod-ipt-psd_* rm -f /home/tplink/code/be900v2/Iplatform/openwrt/bin/model_brcm_bcm490x-be900v2/packages/iptables-mod-quota2_* rm -f /home/tplink/code/be900v2/Iplatform/openwrt/bin/model_brcm_bcm490x-be900v2/packages/kmod-ipt-quota2_* rm -f /home/tplink/code/be900v2/Iplatform/openwrt/bin/model_brcm_bcm490x-be900v2/packages/iptables-mod-sysrq_* rm -f /home/tplink/code/be900v2/Iplatform/openwrt/bin/model_brcm_bcm490x-be900v2/packages/kmod-ipt-sysrq_* rm -f /home/tplink/code/be900v2/Iplatform/openwrt/bin/model_brcm_bcm490x-be900v2/packages/iptables-mod-trigger_* rm -f /home/tplink/code/be900v2/Iplatform/openwrt/bin/model_brcm_bcm490x-be900v2/packages/kmod-ipt-trigger_* rm -f /home/tplink/code/be900v2/Iplatform/openwrt/bin/model_brcm_bcm490x-be900v2/packages/iptables-mod-tarpit_* rm -f /home/tplink/code/be900v2/Iplatform/openwrt/bin/model_brcm_bcm490x-be900v2/packages/kmod-ipt-tarpit_* rm -f /home/tplink/code/be900v2/Iplatform/openwrt/bin/model_brcm_bcm490x-be900v2/packages/iptables-mod-LOOPBACKDNAT_* rm -f /home/tplink/code/be900v2/Iplatform/openwrt/bin/model_brcm_bcm490x-be900v2/packages/kmod-ipt-LOOPBACKDNAT_* rm -f /home/tplink/code/be900v2/Iplatform/openwrt/bin/model_brcm_bcm490x-be900v2/packages/iptables-mod-markext_* rm -f /home/tplink/code/be900v2/Iplatform/openwrt/bin/model_brcm_bcm490x-be900v2/packages/iptables-mod-MARKEXT_* rm -f /home/tplink/code/be900v2/Iplatform/openwrt/bin/model_brcm_bcm490x-be900v2/packages/iptables-mod-V6PORTS_* rm -f /home/tplink/code/be900v2/Iplatform/openwrt/bin/model_brcm_bcm490x-be900v2/packages/kmod-ipt-V6PORTS_* rm -f /home/tplink/code/be900v2/Iplatform/openwrt/bin/model_brcm_bcm490x-be900v2/packages/iptables-mod-CHECKPORTS_* rm -f /home/tplink/code/be900v2/Iplatform/openwrt/bin/model_brcm_bcm490x-be900v2/packages/kmod-ipt-CHECKPORTS_* rm -f /home/tplink/code/be900v2/Iplatform/openwrt/bin/model_brcm_bcm490x-be900v2/packages/iptaccount_* rm -f /home/tplink/code/be900v2/Iplatform/openwrt/bin/model_brcm_bcm490x-be900v2/packages/iptgeoip_* rm -f /home/tplink/code/be900v2/Iplatform/openwrt/bin/model_brcm_bcm490x-be900v2/packages/xtables-addons_* rm -f /home/tplink/code/be900v2/Iplatform/openwrt/staging_dir/target-arm-openwrt-linux-uclibc-be900v2/packages/.list /home/tplink/code/be900v2/Iplatform/openwrt/staging_dir/host/packages/.list rm -rf /home/tplink/code/be900v2/Iplatform/openwrt/build_dir/linux-model_brcm_bcm490x/xtables-addons-2.14 make[3]: Leaving directory '/home/tplink/code/be900v2/prplos/platform/feeds/public/prplos-v3.1.0/feed_opensource/kernel/xtables-addons' make[2]: Leaving directory '/home/tplink/code/be900v2/Iplatform/openwrt' make[1]: Leaving directory '/home/tplink/code/be900v2/Iplatform/openwrt' make[1]: Entering directory '/home/tplink/code/be900v2/Iplatform/openwrt' make[2]: Entering directory '/home/tplink/code/be900v2/Iplatform/openwrt' make[3]: Entering directory '/home/tplink/code/be900v2/Iplatform/openwrt' make[3]: Leaving directory '/home/tplink/code/be900v2/Iplatform/openwrt' make[3]: Entering directory '/home/tplink/code/be900v2/Iplatform/openwrt' make[3]: Leaving directory '/home/tplink/code/be900v2/Iplatform/openwrt' make[2]: Leaving directory '/home/tplink/code/be900v2/Iplatform/openwrt' make[2]: Entering directory '/home/tplink/code/be900v2/Iplatform/openwrt' make[3]: Entering directory '/home/tplink/code/be900v2/prplos/platform/feeds/private/domain-login_module' WARNING: skipping kmod-domain-login_module -- package not selected make[3]: Leaving directory '/home/tplink/code/be900v2/prplos/platform/feeds/private/domain-login_module' make[3]: Entering directory '/home/tplink/code/be900v2/Iplatform/openwrt/package/libmnl' make[3]: Leaving directory '/home/tplink/code/be900v2/Iplatform/openwrt/package/libmnl' make[3]: Entering directory '/home/tplink/code/be900v2/Iplatform/openwrt/package/libnfnetlink' make[3]: Leaving directory '/home/tplink/code/be900v2/Iplatform/openwrt/package/libnfnetlink' make[3]: Entering directory '/home/tplink/code/be900v2/Iplatform/openwrt/package/libnetfilter-conntrack' make[3]: Leaving directory '/home/tplink/code/be900v2/Iplatform/openwrt/package/libnetfilter-conntrack' make[3]: Entering directory '/home/tplink/code/be900v2/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/tplink/code/be900v2/Iplatform/openwrt/package/iptables' make[3]: Entering directory '/home/tplink/code/be900v2/prplos/platform/feeds/public/prplos-v3.1.0/feed_opensource/kernel/xtables-addons' [DEBUG] Using external toolchain: CONFIG_EXTERNAL_TOOLCHAIN is set [DEBUG] Broadcom platform detected: CONFIG_IPF_PLATFORM_BCM is set [DEBUG] Added include paths: /home/tplink/code/be900v2/Iplatform/openwrt/../../bcm504L04/bcm963xx_5.04L.04/kernel/linux-4.19/../bcmkernel/include and /home/tplink/code/be900v2/Iplatform/openwrt/../../bcm504L04/bcm963xx_5.04L.04/kernel/linux-4.19/../bcmkernel/include/uapi ==========XT_PCTL_ALONE = 1========== ==========CONFIG_PACKAGE_XTABLES_ADDONS_VERSION = "v2.14"========== ==========XT_PCTL_VERSION = ========== mkdir -p /home/tplink/code/be900v2/Iplatform/openwrt/build_dir/linux-model_brcm_bcm490x/xtables-addons-2.14 cp -fpR /home/tplink/code/be900v2/Iplatform/openwrt/../../prplos/platform/src/public/xtables-addons/src-2.14//* /home/tplink/code/be900v2/Iplatform/openwrt/build_dir/linux-model_brcm_bcm490x/xtables-addons-2.14 #add by chenrui cp -fpR /home/tplink/code/be900v2/Iplatform/openwrt/../../prplos/platform/src/public/xtables-addons/src-2.14//xt_pctl_avira/* /home/tplink/code/be900v2/Iplatform/openwrt/build_dir/linux-model_brcm_bcm490x/xtables-addons-2.14/extensions ------------copy xt_pctl_avira------------ #add end -------XTABLES_ADDONS_VERSION v2.14 PKG_BUILD_SRC /home/tplink/code/be900v2/Iplatform/openwrt/../../prplos/platform/src/public/xtables-addons/src-2.14/-------- touch /home/tplink/code/be900v2/Iplatform/openwrt/build_dir/linux-model_brcm_bcm490x/xtables-addons-2.14/.prepared_9a1ca534f0501cd994c1fea3bf71dcfe (cd /home/tplink/code/be900v2/Iplatform/openwrt/build_dir/linux-model_brcm_bcm490x/xtables-addons-2.14/./; if [ -x ./configure ]; then /usr/bin/find /home/tplink/code/be900v2/Iplatform/openwrt/build_dir/linux-model_brcm_bcm490x/xtables-addons-2.14/ -name config.guess | xargs -r chmod u+w; /usr/bin/find /home/tplink/code/be900v2/Iplatform/openwrt/build_dir/linux-model_brcm_bcm490x/xtables-addons-2.14/ -name config.guess | xargs -r -n1 cp /home/tplink/code/be900v2/Iplatform/openwrt/scripts/config.guess; /usr/bin/find /home/tplink/code/be900v2/Iplatform/openwrt/build_dir/linux-model_brcm_bcm490x/xtables-addons-2.14/ -name config.sub | xargs -r chmod u+w; /usr/bin/find /home/tplink/code/be900v2/Iplatform/openwrt/build_dir/linux-model_brcm_bcm490x/xtables-addons-2.14/ -name config.sub | xargs -r -n1 cp /home/tplink/code/be900v2/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=" -I/home/tplink/code/be900v2/Iplatform/openwrt/../../bcm504L04/bcm963xx_5.04L.04/kernel/linux-4.19/../bcmkernel/include -I/home/tplink/code/be900v2/Iplatform/openwrt/../../bcm504L04/bcm963xx_5.04L.04/kernel/linux-4.19/../bcmkernel/include/linux -I/home/tplink/code/be900v2/Iplatform/openwrt/../../bcm504L04/bcm963xx_5.04L.04/kernel/linux-4.19/../bcmkernel/include/uapi -I/home/tplink/code/be900v2/Iplatform/openwrt/../../bcm504L04/bcm963xx_5.04L.04/kernel/linux-4.19/../"bcmkernel/include" -I/home/tplink/code/be900v2/Iplatform/openwrt/../../bcm504L04/bcm963xx_5.04L.04/kernel/linux-4.19/../"bcmkernel/include"/uapi -DPCTL_SUPPORT_IPV6 -DSUPPORT_HOMECARE_PRO_BLOCKING -DSUPPORT_HOMECARE_PRO_URL_CLASS -DPCTL_SUPPORT_IPV6 -DPCTL_LOCAL_DOMAINS='\"tplinkwifi.net\"' -DPCTL_BLOCK_URL -DTRAFFIC_STATISTICS_OPTIMIZATION" CXXFLAGS=" -I/home/tplink/code/be900v2/Iplatform/openwrt/../../bcm504L04/bcm963xx_5.04L.04/kernel/linux-4.19/../bcmkernel/include -I/home/tplink/code/be900v2/Iplatform/openwrt/../../bcm504L04/bcm963xx_5.04L.04/kernel/linux-4.19/../bcmkernel/include/linux -I/home/tplink/code/be900v2/Iplatform/openwrt/../../bcm504L04/bcm963xx_5.04L.04/kernel/linux-4.19/../bcmkernel/include/uapi -I/home/tplink/code/be900v2/Iplatform/openwrt/../../bcm504L04/bcm963xx_5.04L.04/kernel/linux-4.19/../"bcmkernel/include" -I/home/tplink/code/be900v2/Iplatform/openwrt/../../bcm504L04/bcm963xx_5.04L.04/kernel/linux-4.19/../"bcmkernel/include"/uapi -DPCTL_SUPPORT_IPV6 -DSUPPORT_HOMECARE_PRO_BLOCKING -DSUPPORT_HOMECARE_PRO_URL_CLASS -DPCTL_SUPPORT_IPV6 -DPCTL_LOCAL_DOMAINS='\"tplinkwifi.net\"' -DPCTL_BLOCK_URL -DTRAFFIC_STATISTICS_OPTIMIZATION" CPPFLAGS="-I/home/tplink/code/be900v2/Iplatform/openwrt/staging_dir/target-arm-openwrt-linux-uclibc-be900v2/usr/include -I/home/tplink/code/be900v2/Iplatform/openwrt/staging_dir/target-arm-openwrt-linux-uclibc-be900v2/include -I/home/tplink/code/be900v2/Iplatform/openwrt/staging_dir/usr-be900v2/include -I/home/tplink/code/be900v2/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/tplink/code/be900v2/Iplatform/openwrt/staging_dir/target-arm-openwrt-linux-uclibc-be900v2/usr/lib -L/home/tplink/code/be900v2/Iplatform/openwrt/staging_dir/target-arm-openwrt-linux-uclibc-be900v2/lib -Wl,-rpath-link,/home/tplink/code/be900v2/Iplatform/openwrt/staging_dir/target-arm-openwrt-linux-uclibc-be900v2/usr/lib -L/home/tplink/code/be900v2/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/tplink/code/be900v2/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=x86_64-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/tplink/code/be900v2/Iplatform/openwrt/../../bcm504L04/bcm963xx_5.04L.04/kernel/linux-4.19" --with-xtables="/home/tplink/code/be900v2/Iplatform/openwrt/staging_dir/target-arm-openwrt-linux-uclibc-be900v2/usr" --with-xtlibdir="/usr/lib/iptables" ; fi; ) configure: WARNING: unrecognized options: --disable-nls, --with-xtables configure: loading site script /home/tplink/code/be900v2/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 whether make supports nested variables... (cached) 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... x86_64-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/tplink/code/be900v2/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... 1572864 checking how to convert x86_64-pc-linux-gnu file names to arm-openwrt-linux-uclibc format... func_convert_file_noop checking how to convert x86_64-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 a working dd... /bin/dd checking how to truncate binary pipes... /bin/dd bs=4096 count=1 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 xtables >= 1.4.5... yes checking Xtables module directory... /usr/lib/iptables checking kernel version that we will build against... 4.19.294.0 in /home/tplink/code/be900v2/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/tplink/code/be900v2/Iplatform/openwrt/build_dir/linux-model_brcm_bcm490x//.configured_* touch /home/tplink/code/be900v2/Iplatform/openwrt/build_dir/linux-model_brcm_bcm490x//.configured_ make -j1 -C /home/tplink/code/be900v2/Iplatform/openwrt/build_dir/linux-model_brcm_bcm490x/xtables-addons-2.14 ARCH="arm64" CROSS_COMPILE="aarch64-buildroot-linux-gnu-" EXTRA_CFLAGS="-I/home/tplink/code/be900v2/Iplatform/openwrt/../../bcm504L04/bcm963xx_5.04L.04/kernel/linux-4.19/../bcmkernel/include -I/home/tplink/code/be900v2/Iplatform/openwrt/../../bcm504L04/bcm963xx_5.04L.04/kernel/linux-4.19/../bcmkernel/include/linux -I/home/tplink/code/be900v2/Iplatform/openwrt/../../bcm504L04/bcm963xx_5.04L.04/kernel/linux-4.19/../bcmkernel/include/uapi -I/home/tplink/code/be900v2/Iplatform/openwrt/../../bcm504L04/bcm963xx_5.04L.04/kernel/linux-4.19/../"bcmkernel/include" -I/home/tplink/code/be900v2/Iplatform/openwrt/../../bcm504L04/bcm963xx_5.04L.04/kernel/linux-4.19/../"bcmkernel/include"/uapi -DPCTL_SUPPORT_IPV6 -DSUPPORT_HOMECARE_PRO_BLOCKING -DSUPPORT_HOMECARE_PRO_URL_CLASS -DPCTL_SUPPORT_IPV6 -DPCTL_LOCAL_DOMAINS='\"tplinkwifi.net\"' -DPCTL_BLOCK_URL -DTRAFFIC_STATISTICS_OPTIMIZATION" DESTDIR="/home/tplink/code/be900v2/Iplatform/openwrt/build_dir/linux-model_brcm_bcm490x/xtables-addons-2.14/ipkg-install" DEPMOD="/bin/true" all make[4]: Entering directory '/home/tplink/code/be900v2/Iplatform/openwrt/build_dir/linux-model_brcm_bcm490x/xtables-addons-2.14' CDPATH="${ZSH_VERSION+.}:" && cd . && /bin/sh /home/tplink/code/be900v2/Iplatform/openwrt/build_dir/linux-model_brcm_bcm490x/xtables-addons-2.14/build-aux/missing aclocal-1.15 -I m4 cd . && /bin/sh /home/tplink/code/be900v2/Iplatform/openwrt/build_dir/linux-model_brcm_bcm490x/xtables-addons-2.14/build-aux/missing automake-1.15 --foreign 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) CDPATH="${ZSH_VERSION+.}:" && cd . && /bin/sh /home/tplink/code/be900v2/Iplatform/openwrt/build_dir/linux-model_brcm_bcm490x/xtables-addons-2.14/build-aux/missing autoconf /bin/sh ./config.status --recheck running CONFIG_SHELL=/bin/sh /bin/sh ./configure --target=arm-openwrt-linux-uclibc --host=arm-openwrt-linux-uclibc --build=x86_64-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/tplink/code/be900v2/Iplatform/openwrt/../../bcm504L04/bcm963xx_5.04L.04/kernel/linux-4.19 --with-xtables=/home/tplink/code/be900v2/Iplatform/openwrt/staging_dir/target-arm-openwrt-linux-uclibc-be900v2/usr --with-xtlibdir=/usr/lib/iptables build_alias=x86_64-linux-gnu host_alias=arm-openwrt-linux-uclibc target_alias=arm-openwrt-linux-uclibc CC=arm-buildroot-linux-gnueabi-gcc CFLAGS= -I/home/tplink/code/be900v2/Iplatform/openwrt/../../bcm504L04/bcm963xx_5.04L.04/kernel/linux-4.19/../bcmkernel/include -I/home/tplink/code/be900v2/Iplatform/openwrt/../../bcm504L04/bcm963xx_5.04L.04/kernel/linux-4.19/../bcmkernel/include/linux -I/home/tplink/code/be900v2/Iplatform/openwrt/../../bcm504L04/bcm963xx_5.04L.04/kernel/linux-4.19/../bcmkernel/include/uapi -I/home/tplink/code/be900v2/Iplatform/openwrt/../../bcm504L04/bcm963xx_5.04L.04/kernel/linux-4.19/../bcmkernel/include -I/home/tplink/code/be900v2/Iplatform/openwrt/../../bcm504L04/bcm963xx_5.04L.04/kernel/linux-4.19/../bcmkernel/include/uapi -DPCTL_SUPPORT_IPV6 -DSUPPORT_HOMECARE_PRO_BLOCKING -DSUPPORT_HOMECARE_PRO_URL_CLASS -DPCTL_SUPPORT_IPV6 -DPCTL_LOCAL_DOMAINS='"tplinkwifi.net"' -DPCTL_BLOCK_URL -DTRAFFIC_STATISTICS_OPTIMIZATION LDFLAGS=-L/home/tplink/code/be900v2/Iplatform/openwrt/staging_dir/target-arm-openwrt-linux-uclibc-be900v2/usr/lib -L/home/tplink/code/be900v2/Iplatform/openwrt/staging_dir/target-arm-openwrt-linux-uclibc-be900v2/lib -Wl,-rpath-link,/home/tplink/code/be900v2/Iplatform/openwrt/staging_dir/target-arm-openwrt-linux-uclibc-be900v2/usr/lib -L/home/tplink/code/be900v2/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/tplink/code/be900v2/Iplatform/openwrt/../../bcm504L04/toolchain/opt/toolchains/crosstools-arm_softfp-gcc-10.3-linux-4.19-glibc-2.32-binutils-2.36.1/lib CPPFLAGS=-I/home/tplink/code/be900v2/Iplatform/openwrt/staging_dir/target-arm-openwrt-linux-uclibc-be900v2/usr/include -I/home/tplink/code/be900v2/Iplatform/openwrt/staging_dir/target-arm-openwrt-linux-uclibc-be900v2/include -I/home/tplink/code/be900v2/Iplatform/openwrt/staging_dir/usr-be900v2/include -I/home/tplink/code/be900v2/Iplatform/openwrt/../../bcm504L04/toolchain/opt/toolchains/crosstools-arm_softfp-gcc-10.3-linux-4.19-glibc-2.32-binutils-2.36.1/usr/include PKG_CONFIG=/home/tplink/code/be900v2/Iplatform/openwrt/staging_dir/host/bin/pkg-config PKG_CONFIG_PATH=/home/tplink/code/be900v2/Iplatform/openwrt/staging_dir/target-arm-openwrt-linux-uclibc-be900v2/usr/lib/pkgconfig PKG_CONFIG_LIBDIR=/home/tplink/code/be900v2/Iplatform/openwrt/staging_dir/target-arm-openwrt-linux-uclibc-be900v2/usr/lib/pkgconfig --no-create --no-recursion configure: WARNING: unrecognized options: --disable-nls, --with-xtables configure: loading site script /home/tplink/code/be900v2/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... no checking for strip... strip configure: WARNING: using cross tools not prefixed with host triplet 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... no checking for arm-openwrt-linux-uclibc-lib... no checking for arm-openwrt-linux-uclibc-link... no checking for ar... ar checking the archiver (ar) interface... ar checking build system type... x86_64-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/tplink/code/be900v2/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... /home/tplink/code/be900v2/bcm504L04/toolchain/opt/toolchains/crosstools-arm_softfp-gcc-10.3-linux-4.19-glibc-2.32-binutils-2.36.1/arm-buildroot-linux-gnueabi/bin/ld checking if the linker (/home/tplink/code/be900v2/bcm504L04/toolchain/opt/toolchains/crosstools-arm_softfp-gcc-10.3-linux-4.19-glibc-2.32-binutils-2.36.1/arm-buildroot-linux-gnueabi/bin/ld) is GNU ld... yes checking for BSD- or MS-compatible name lister (nm)... no checking for arm-openwrt-linux-uclibc-dumpbin... no checking for arm-openwrt-linux-uclibc-link... no checking for dumpbin... no checking for link... link -dump checking the name lister (nm) interface... BSD nm checking whether ln -s works... yes checking the maximum length of command line arguments... 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking how to convert x86_64-pc-linux-gnu file names to arm-openwrt-linux-uclibc format... func_convert_file_noop checking how to convert x86_64-pc-linux-gnu file names to toolchain format... func_convert_file_noop checking for /home/tplink/code/be900v2/bcm504L04/toolchain/opt/toolchains/crosstools-arm_softfp-gcc-10.3-linux-4.19-glibc-2.32-binutils-2.36.1/arm-buildroot-linux-gnueabi/bin/ld option to reload object files... -r checking for arm-openwrt-linux-uclibc-objdump... no checking for objdump... 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... ar checking for archiver @FILE support... @ checking for arm-openwrt-linux-uclibc-strip... strip checking for arm-openwrt-linux-uclibc-ranlib... no checking for ranlib... ranlib checking command to parse 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 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 (/home/tplink/code/be900v2/bcm504L04/toolchain/opt/toolchains/crosstools-arm_softfp-gcc-10.3-linux-4.19-glibc-2.32-binutils-2.36.1/arm-buildroot-linux-gnueabi/bin/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.294.0 in /home/tplink/code/be900v2/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 configure: WARNING: unrecognized options: --disable-nls, --with-xtables /bin/sh ./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: config.h is unchanged config.status: executing depfiles commands config.status: executing libtool commands (CDPATH="${ZSH_VERSION+.}:" && cd . && /bin/sh /home/tplink/code/be900v2/Iplatform/openwrt/build_dir/linux-model_brcm_bcm490x/xtables-addons-2.14/build-aux/missing autoheader) rm -f stamp-h1 touch config.h.in cd . && /bin/sh ./config.status config.h config.status: creating config.h make all-recursive make[5]: Entering directory '/home/tplink/code/be900v2/Iplatform/openwrt/build_dir/linux-model_brcm_bcm490x/xtables-addons-2.14' Making all in extensions make[6]: Entering directory '/home/tplink/code/be900v2/Iplatform/openwrt/build_dir/linux-model_brcm_bcm490x/xtables-addons-2.14/extensions' Xtables-addons 2.14 - Linux 4.19.294 if [ -n "/home/tplink/code/be900v2/Iplatform/openwrt/../../bcm504L04/bcm963xx_5.04L.04/kernel/linux-4.19" ]; then make -C /home/tplink/code/be900v2/Iplatform/openwrt/../../bcm504L04/bcm963xx_5.04L.04/kernel/linux-4.19 M=/home/tplink/code/be900v2/Iplatform/openwrt/build_dir/linux-model_brcm_bcm490x/xtables-addons-2.14/extensions KBUILD_EXTRA_SYMBOLS=/home/tplink/code/be900v2/Iplatform/openwrt/build_dir/linux-model_brcm_bcm490x/xtables-addons-2.14/extensions/../Module.symvers modules; fi; make[7]: Entering directory '/home/tplink/code/be900v2/bcm504L04/bcm963xx_5.04L.04/kernel/linux-4.19' CC [M] /home/tplink/code/be900v2/Iplatform/openwrt/build_dir/linux-model_brcm_bcm490x/xtables-addons-2.14/extensions/ACCOUNT/xt_ACCOUNT.o In file included from ./include/net/net_namespace.h:39, from /home/tplink/code/be900v2/Iplatform/openwrt/build_dir/linux-model_brcm_bcm490x/xtables-addons-2.14/extensions/ACCOUNT/xt_ACCOUNT.c:18: ./include/linux/skbuff.h:605:10: fatal error: linux/bcm_skbuff.h: No such file or directory 605 | #include <linux/bcm_skbuff.h> | ^~~~~~~~~~~~~~~~~~~~ compilation terminated. scripts/Makefile.build:330: recipe for target '/home/tplink/code/be900v2/Iplatform/openwrt/build_dir/linux-model_brcm_bcm490x/xtables-addons-2.14/extensions/ACCOUNT/xt_ACCOUNT.o' failed make[9]: *** [/home/tplink/code/be900v2/Iplatform/openwrt/build_dir/linux-model_brcm_bcm490x/xtables-addons-2.14/extensions/ACCOUNT/xt_ACCOUNT.o] Error 1 scripts/Makefile.build:565: recipe for target '/home/tplink/code/be900v2/Iplatform/openwrt/build_dir/linux-model_brcm_bcm490x/xtables-addons-2.14/extensions/ACCOUNT' failed make[8]: *** [/home/tplink/code/be900v2/Iplatform/openwrt/build_dir/linux-model_brcm_bcm490x/xtables-addons-2.14/extensions/ACCOUNT] Error 2 Makefile:1586: recipe for target '_module_/home/tplink/code/be900v2/Iplatform/openwrt/build_dir/linux-model_brcm_bcm490x/xtables-addons-2.14/extensions' failed make[7]: *** [_module_/home/tplink/code/be900v2/Iplatform/openwrt/build_dir/linux-model_brcm_bcm490x/xtables-addons-2.14/extensions] Error 2 make[7]: Leaving directory '/home/tplink/code/be900v2/bcm504L04/bcm963xx_5.04L.04/kernel/linux-4.19' Makefile:456: recipe for target 'modules' failed make[6]: *** [modules] Error 2 make[6]: Leaving directory '/home/tplink/code/be900v2/Iplatform/openwrt/build_dir/linux-model_brcm_bcm490x/xtables-addons-2.14/extensions' Makefile:491: recipe for target 'all-recursive' failed make[5]: *** [all-recursive] Error 1 make[5]: Leaving directory '/home/tplink/code/be900v2/Iplatform/openwrt/build_dir/linux-model_brcm_bcm490x/xtables-addons-2.14' Makefile:376: recipe for target 'all' failed make[4]: *** [all] Error 2 make[4]: Leaving directory '/home/tplink/code/be900v2/Iplatform/openwrt/build_dir/linux-model_brcm_bcm490x/xtables-addons-2.14' Makefile:394: recipe for target '/home/tplink/code/be900v2/Iplatform/openwrt/build_dir/linux-model_brcm_bcm490x//.built' failed make[3]: *** [/home/tplink/code/be900v2/Iplatform/openwrt/build_dir/linux-model_brcm_bcm490x//.built] Error 2 make[3]: Leaving directory '/home/tplink/code/be900v2/prplos/platform/feeds/public/prplos-v3.1.0/feed_opensource/kernel/xtables-addons' package/Makefile:133: recipe for target 'package/feeds/feed_opensource/xtables-addons/compile' failed make[2]: *** [package/feeds/feed_opensource/xtables-addons/compile] Error 2 make[2]: Leaving directory '/home/tplink/code/be900v2/Iplatform/openwrt' /home/tplink/code/be900v2/Iplatform/openwrt/include/toplevel.mk:184: recipe for target 'package/xtables-addons/compile' failed make[1]: *** [package/xtables-addons/compile] Error 2 make[1]: Leaving directory '/home/tplink/code/be900v2/Iplatform/openwrt' Makefile:232: recipe for target 'iplatform_package/xtables-addons/compile' failed make: *** [iplatform_package/xtables-addons/compile] Error 2 tplink@5e15b687a070:~/code/be900v2/Iplatform/build$
10-25
ezi@ubuntu:~/curl-8.7.1$ ./configure --prefix=/usr/bin/curl --host=/home/gezi/study/work/allwinner/out/t113_i/ebyte_t113i/buildroot/buildroot/host/usr/bin/arm-linux-gnueabi CC=arm-linux-gnueabi-gcc CXX=arm-linux-gnueabi-g++ --with-wolfssl checking whether to enable maintainer-specific portions of Makefiles... no checking whether make supports nested variables... yes checking whether to enable debug build options... no checking whether to enable compiler optimizer... (assumed) yes checking whether to enable strict compiler warnings... no checking whether to enable compiler warnings as errors... no checking whether to enable curl debug memory tracking... no checking whether to enable hiding of library internal symbols... yes checking whether to enable c-ares for DNS lookups... no checking whether to disable dependency on -lrt... (assumed no) checking whether to enable ECH support... no checking for path separator... : checking for sed... /bin/sed checking for grep... /bin/grep checking that grep -E works... yes checking for /home/gezi/study/work/allwinner/out/t113_i/ebyte_t113i/buildroot/buildroot/host/usr/bin/arm-linux-gnueabi-ar... no checking for ar... /usr/bin/ar checking for a BSD-compatible install... /usr/bin/install -c checking for /home/gezi/study/work/allwinner/out/t113_i/ebyte_t113i/buildroot/buildroot/host/usr/bin/arm-linux-gnueabi-gcc... arm-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 the compiler supports GNU C... yes checking whether arm-linux-gnueabi-gcc accepts -g... yes checking for arm-linux-gnueabi-gcc option to enable C11 features... none needed checking whether arm-linux-gnueabi-gcc understands -c and -o together... yes checking how to run the C preprocessor... arm-linux-gnueabi-gcc -E checking for stdio.h... yes checking for stdlib.h... yes checking for string.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for strings.h... yes checking for sys/stat.h... yes checking for sys/types.h... yes checking for unistd.h... yes checking for stdatomic.h... yes checking if _Atomic is available... yes checking for a sed that does not truncate output... (cached) /bin/sed checking for code coverage support... no checking whether build environment is sane... yes checking for /home/gezi/study/work/allwinner/out/t113_i/ebyte_t113i/buildroot/buildroot/host/usr/bin/arm-linux-gnueabi-strip... no checking for strip... strip configure: WARNING: using cross tools not prefixed with host triplet checking for a race-free mkdir -p... /bin/mkdir -p checking for gawk... gawk checking whether make sets $(MAKE)... yes checking whether make supports the include directive... yes (GNU style) checking dependency style of arm-linux-gnueabi-gcc... gcc3 checking curl version... 8.7.1 checking for httpd... no checking for apache2... no checking for apachectl... no checking for apxs... no configure: httpd/apache2 not in PATH, http tests disabled configure: apxs not in PATH, http tests disabled checking for nghttpx... no checking for caddy... no checking build system type... configure: error: invalid value of canonical build
10-11
对比正常编译的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
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值