Navigation

    全志在线开发者论坛

    • Register
    • Login
    • Search
    • Categories
    • Tags
    • 在线文档
    • 社区主页
    1. Home
    2. BedRock
    3. Posts
    • Profile
    • Following 4
    • Followers 8
    • my integral 3748
    • Topics 30
    • Posts 311
    • Best 31
    • Groups 0

    Posts made by BedRock

    • Reply: 全志D1裸奔工具XFEL

      有没有 芯片 寄存器的参考 或者后续 有没有封装库函数的打算😳 ,

      还挺期待,这个裸机跑起控制算法 能起飞
      😳

      posted in MR Series
      BedRock
      BedRock
    • 【加精】在Ubuntu21.04中编译Tina SDKV1.01 版本 踩坑记录

      前言

      本人使用Ubuntu21.04,是在Ubuntu18.04 使用系统升级的方法升级,并非直接安装Ubuntu21.04 系统镜像。希望参考该帖开发者注意。


      安装环境提醒

      再Ubuntu更新软件包同时,个人不推荐使用清华源,可能会出现一些软件包安装找不到的问题(因为我之前就是),后面改为阿里源,然后就没有出现过软件包依赖的相关问题。切换软件源请自行百度参考帖子。


      安装过程踩坑记录

      参考全志官方文档:https://d1.docs.allwinnertech.com/study/study_2getsdk/

      1、安装软件包问题

      sudo apt-get install build-essential subversion git-core libncurses5-dev zlib1g-dev gawk flex quilt libssl-dev xsltproc libxml-parser-perl mercurial bzr ecj cvs unzip lib32z1 lib32z1-dev lib32stdc++6 libstdc++6 -y
      

      在软件包安装的时候 建议取消后面 -y 选项 ,先看一下有没有自动卸载一些包 如果有建议取消安装,然后一个一个包安装。
      如果出现软件包找不到的情况,请自行使用Tab补齐命令查看可以安装的包,并选择何时的包进行安装。
      针对于32位的软件包

      sudo apt-get install libc6:i386 libstdc++6:i386 lib32ncurses5 lib32z1
      

      更有可能出现找不到的情况,依然使用Tab补齐命令,查看当前可以安装的包,并选择何时的包进行安装。

      2、编译问题

      依然参考官方文档:https://d1.docs.allwinnertech.com/study/study_4compile/


      source 环境变量如果有错,请检查文件夹权限,将文件夹权限由root用户更改为普通用户。
      如果还有问题,请根据具体信息对照 envsetup.sh文件中的 envsetup函数。一一落实执行过程。


      3、make过程中遇到的问题

      问题一

      报错提示没有记录,查看报错提示,可以定位到 两处文件,修改其源码为:

      #gdbusmessage.c文件,路径为:./out/d1-nezha/compile_dir/target/host/glib-2.50.1/gio/gdbusmessage.c
      gdbusmessage.c:2698:30:
            if (signature_str)
            tupled_signature_str = g_strdup_printf ("(%s)", signature_str);
      
      #这个文件路径还请自行查找
      dbusauth.c 1298
            if (line == NULL)
                  goto out;
                debug_print ("SERVER: WaitingForBegin, read '%s'", line);
      

      问题二

      rm: cannot remove '/home/jie/allwinner/tina-d1-open/tmp/info/.overrides-packageinfo-1859194': Permission denied
      make[3]: *** No rule to make target '/home/jie/allwinner/tina-d1-open/tmp/info/.files-packageinfo-1861882'.  Stop.
      cat: /home/jie/allwinner/tina-d1-open/tmp/info/.files-packageinfo-1861882: No such file or directory
      cat: /home/jie/allwinner/tina-d1-open/tmp/info/.overrides-packageinfo-1861882: No such file or directory
      rm: cannot remove '/home/jie/allwinner/tina-d1-open/tmp/info/.files-packageinfo.stamp.4ecc855bd5022757c3b7544e2dfb29c7': Permission denied
      touch: cannot touch '/home/jie/allwinner/tina-d1-open/tmp/info/.files-packageinfo.stamp.d41d8cd98f00b204e9800998ecf8427e': Permission denied
      touch: cannot touch '/home/jie/allwinner/tina-d1-open/tmp/info/.files-packageinfo.stamp': Permission denied
      make[2]: *** [build/scan.mk:84: /home/jie/allwinner/tina-d1-open/tmp/info/.files-packageinfo.stamp] Error 1
      make[1]: *** [/home/jie/allwinner/tina-d1-open/build/toplevel.mk:84: prepare-tmpinfo] Error 2
      make: *** [/home/jie/allwinner/tina-d1-open/build/toplevel.mk:304:world] 错误 2
      [2]+  已完成               $T/tools/build/buildserver --path $T
      
      #### make failed to build some targets (1 seconds) ####
      
      

      这个主要是文件夹及文件权限问题,给这几个文件及它的文件夹777权限。
      基本是 tmp文件夹的相关属性。

      问题三

      strerror-sym.c:47:9: error: 'errnos_msgstr' undeclared (first use in this function)
        return errnos_msgstr + errnos_msgidx[idx];
               ^~~~~~~~~~~~~
      strerror-sym.c:47:9: note: each undeclared identifier is reported only once for eac                                                                                                                        h function it appears in
      strerror-sym.c:47:25: error: 'errnos_msgidx' undeclared (first use in this function                                                                                                                           )
        return errnos_msgstr + errnos_msgidx[idx];
                               ^~~~~~~~~~~~~
      make[7]: *** [Makefile:946: gpg_error-strerror-sym.o] Error 1
      
      

      通过查找文件定位
      ./out/d1-nezha/compile_dir/target/libgpg-error-1.27/src/errnos-sym.h 这个文件为空
      编译不通过 , 相关变量没有定义
      感谢全志官方群大佬的鼎力相助发了我一手头文件
      这是缺少头文件中的内容

      /* Output of mkstrtable.awk.  DO NOT EDIT.  */
      
      /* errnos.in - List of system error values.
         Copyright (C) 2003, 2004 g10 Code GmbH
      
         This file is part of libgpg-error.
      
         libgpg-error is free software; you can redistribute it and/or
         modify it under the terms of the GNU Lesser General Public License
         as published by the Free Software Foundation; either version 2.1 of
         the License, or (at your option) any later version.
      
         libgpg-error is distributed in the hope that it will be useful, but
         WITHOUT ANY WARRANTY; without even the implied warranty of
         MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
         Lesser General Public License for more details.
      
         You should have received a copy of the GNU Lesser General Public
         License along with libgpg-error; if not, write to the Free
         Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
         02111-1307, USA.  */
      
      
      
      /* The purpose of this complex string table is to produce
         optimal code with a minimum of relocations.  */
      
      static const char errnos_msgstr[] =
        "GPG_ERR_E2BIG" "\0"
        "GPG_ERR_EACCES" "\0"
        "GPG_ERR_EADDRINUSE" "\0"
        "GPG_ERR_EADDRNOTAVAIL" "\0"
        "GPG_ERR_EADV" "\0"
        "GPG_ERR_EAFNOSUPPORT" "\0"
        "GPG_ERR_EAGAIN" "\0"
        "GPG_ERR_EALREADY" "\0"
        "GPG_ERR_EAUTH" "\0"
        "GPG_ERR_EBACKGROUND" "\0"
        "GPG_ERR_EBADE" "\0"
        "GPG_ERR_EBADF" "\0"
        "GPG_ERR_EBADFD" "\0"
        "GPG_ERR_EBADMSG" "\0"
        "GPG_ERR_EBADR" "\0"
        "GPG_ERR_EBADRPC" "\0"
        "GPG_ERR_EBADRQC" "\0"
        "GPG_ERR_EBADSLT" "\0"
        "GPG_ERR_EBFONT" "\0"
        "GPG_ERR_EBUSY" "\0"
        "GPG_ERR_ECANCELED" "\0"
        "GPG_ERR_ECHILD" "\0"
        "GPG_ERR_ECHRNG" "\0"
        "GPG_ERR_ECOMM" "\0"
        "GPG_ERR_ECONNABORTED" "\0"
        "GPG_ERR_ECONNREFUSED" "\0"
        "GPG_ERR_ECONNRESET" "\0"
        "GPG_ERR_ED" "\0"
        "GPG_ERR_EDEADLK" "\0"
        "GPG_ERR_EDEADLOCK" "\0"
        "GPG_ERR_EDESTADDRREQ" "\0"
        "GPG_ERR_EDIED" "\0"
        "GPG_ERR_EDOM" "\0"
        "GPG_ERR_EDOTDOT" "\0"
        "GPG_ERR_EDQUOT" "\0"
        "GPG_ERR_EEXIST" "\0"
        "GPG_ERR_EFAULT" "\0"
        "GPG_ERR_EFBIG" "\0"
        "GPG_ERR_EFTYPE" "\0"
        "GPG_ERR_EGRATUITOUS" "\0"
        "GPG_ERR_EGREGIOUS" "\0"
        "GPG_ERR_EHOSTDOWN" "\0"
        "GPG_ERR_EHOSTUNREACH" "\0"
        "GPG_ERR_EIDRM" "\0"
        "GPG_ERR_EIEIO" "\0"
        "GPG_ERR_EILSEQ" "\0"
        "GPG_ERR_EINPROGRESS" "\0"
        "GPG_ERR_EINTR" "\0"
        "GPG_ERR_EINVAL" "\0"
        "GPG_ERR_EIO" "\0"
        "GPG_ERR_EISCONN" "\0"
        "GPG_ERR_EISDIR" "\0"
        "GPG_ERR_EISNAM" "\0"
        "GPG_ERR_EL2HLT" "\0"
        "GPG_ERR_EL2NSYNC" "\0"
        "GPG_ERR_EL3HLT" "\0"
        "GPG_ERR_EL3RST" "\0"
        "GPG_ERR_ELIBACC" "\0"
        "GPG_ERR_ELIBBAD" "\0"
        "GPG_ERR_ELIBEXEC" "\0"
        "GPG_ERR_ELIBMAX" "\0"
        "GPG_ERR_ELIBSCN" "\0"
        "GPG_ERR_ELNRNG" "\0"
        "GPG_ERR_ELOOP" "\0"
        "GPG_ERR_EMEDIUMTYPE" "\0"
        "GPG_ERR_EMFILE" "\0"
        "GPG_ERR_EMLINK" "\0"
        "GPG_ERR_EMSGSIZE" "\0"
        "GPG_ERR_EMULTIHOP" "\0"
        "GPG_ERR_ENAMETOOLONG" "\0"
        "GPG_ERR_ENAVAIL" "\0"
        "GPG_ERR_ENEEDAUTH" "\0"
        "GPG_ERR_ENETDOWN" "\0"
        "GPG_ERR_ENETRESET" "\0"
        "GPG_ERR_ENETUNREACH" "\0"
        "GPG_ERR_ENFILE" "\0"
        "GPG_ERR_ENOANO" "\0"
        "GPG_ERR_ENOBUFS" "\0"
        "GPG_ERR_ENOCSI" "\0"
        "GPG_ERR_ENODATA" "\0"
        "GPG_ERR_ENODEV" "\0"
        "GPG_ERR_ENOENT" "\0"
        "GPG_ERR_ENOEXEC" "\0"
        "GPG_ERR_ENOLCK" "\0"
        "GPG_ERR_ENOLINK" "\0"
        "GPG_ERR_ENOMEDIUM" "\0"
        "GPG_ERR_ENOMEM" "\0"
        "GPG_ERR_ENOMSG" "\0"
        "GPG_ERR_ENONET" "\0"
        "GPG_ERR_ENOPKG" "\0"
        "GPG_ERR_ENOPROTOOPT" "\0"
        "GPG_ERR_ENOSPC" "\0"
        "GPG_ERR_ENOSR" "\0"
        "GPG_ERR_ENOSTR" "\0"
        "GPG_ERR_ENOSYS" "\0"
        "GPG_ERR_ENOTBLK" "\0"
        "GPG_ERR_ENOTCONN" "\0"
        "GPG_ERR_ENOTDIR" "\0"
        "GPG_ERR_ENOTEMPTY" "\0"
        "GPG_ERR_ENOTNAM" "\0"
        "GPG_ERR_ENOTSOCK" "\0"
        "GPG_ERR_ENOTSUP" "\0"
        "GPG_ERR_ENOTTY" "\0"
        "GPG_ERR_ENOTUNIQ" "\0"
        "GPG_ERR_ENXIO" "\0"
        "GPG_ERR_EOPNOTSUPP" "\0"
        "GPG_ERR_EOVERFLOW" "\0"
        "GPG_ERR_EPERM" "\0"
        "GPG_ERR_EPFNOSUPPORT" "\0"
        "GPG_ERR_EPIPE" "\0"
        "GPG_ERR_EPROCLIM" "\0"
        "GPG_ERR_EPROCUNAVAIL" "\0"
        "GPG_ERR_EPROGMISMATCH" "\0"
        "GPG_ERR_EPROGUNAVAIL" "\0"
        "GPG_ERR_EPROTO" "\0"
        "GPG_ERR_EPROTONOSUPPORT" "\0"
        "GPG_ERR_EPROTOTYPE" "\0"
        "GPG_ERR_ERANGE" "\0"
        "GPG_ERR_EREMCHG" "\0"
        "GPG_ERR_EREMOTE" "\0"
        "GPG_ERR_EREMOTEIO" "\0"
        "GPG_ERR_ERESTART" "\0"
        "GPG_ERR_EROFS" "\0"
        "GPG_ERR_ERPCMISMATCH" "\0"
        "GPG_ERR_ESHUTDOWN" "\0"
        "GPG_ERR_ESOCKTNOSUPPORT" "\0"
        "GPG_ERR_ESPIPE" "\0"
        "GPG_ERR_ESRCH" "\0"
        "GPG_ERR_ESRMNT" "\0"
        "GPG_ERR_ESTALE" "\0"
        "GPG_ERR_ESTRPIPE" "\0"
        "GPG_ERR_ETIME" "\0"
        "GPG_ERR_ETIMEDOUT" "\0"
        "GPG_ERR_ETOOMANYREFS" "\0"
        "GPG_ERR_ETXTBSY" "\0"
        "GPG_ERR_EUCLEAN" "\0"
        "GPG_ERR_EUNATCH" "\0"
        "GPG_ERR_EUSERS" "\0"
        "GPG_ERR_EWOULDBLOCK" "\0"
        "GPG_ERR_EXDEV" "\0"
        "GPG_ERR_EXFULL";
      
      static const int errnos_msgidx[] =
        {
          0,
          14,
          29,
          48,
          70,
          83,
          104,
          119,
          136,
          150,
          170,
          184,
          198,
          213,
          229,
          243,
          259,
          275,
          291,
          306,
          320,
          338,
          353,
          368,
          382,
          403,
          424,
          443,
          454,
          470,
          488,
          509,
          523,
          536,
          552,
          567,
          582,
          597,
          611,
          626,
          646,
          664,
          682,
          703,
          717,
          731,
          746,
          766,
          780,
          795,
          807,
          823,
          838,
          853,
          868,
          885,
          900,
          915,
          931,
          947,
          964,
          980,
          996,
          1011,
          1025,
          1045,
          1060,
          1075,
          1092,
          1110,
          1131,
          1147,
          1165,
          1182,
          1200,
          1220,
          1235,
          1250,
          1266,
          1281,
          1297,
          1312,
          1327,
          1343,
          1358,
          1374,
          1392,
          1407,
          1422,
          1437,
          1452,
          1472,
          1487,
          1501,
          1516,
          1531,
          1547,
          1564,
          1580,
          1598,
          1614,
          1631,
          1647,
          1662,
          1679,
          1693,
          1712,
          1730,
          1744,
          1765,
          1779,
          1796,
          1817,
          1839,
          1860,
          1875,
          1899,
          1918,
          1933,
          1949,
          1965,
          1983,
          2000,
          2014,
          2035,
          2053,
          2077,
          2092,
          2106,
          2121,
          2136,
          2153,
          2167,
          2185,
          2206,
          2222,
          2238,
          2254,
          2269,
          2289,
          2303,
      
        };
      
      static GPG_ERR_INLINE int
      errnos_msgidxof (int code)
      {
        return (0 ? 0
        : ((code >= 0) && (code <= 140)) ? (code - 0)
        : -1);
      }
      

      谨此,更改之后,D1 SDK 编译通过。 非常感谢官方群 大佬们的帮助!

      #### make completed successfully (15:51 (mm:ss)) ####
      

      嘻嘻!

      posted in MR Series
      BedRock
      BedRock
    • Reply: D1 lunch d1_nezha-tina 时候出现下面问题

      权限不够使用chmod 给相应的文件增加一下权限 推荐 直接给文件或者文件夹777权限

      posted in MR Series
      BedRock
      BedRock
    • Reply: D1 SDK V1.01 固件在编译的过程中遇到的问题

      再次记录,在编译过程中会出现/tmp 文件删除不掉的情况 需要将tmp文件夹整体 给予777权限 确保make 可以删除 该文件夹和文件夹中的文件

      有来自于 tmp 的权限不足不能操作的问题 将文件夹所有的权限修改为 777

      posted in MR Series
      BedRock
      BedRock
    • Reply: D1 SDK V1.01 固件在编译的过程中遇到的问题

      @xiaowenge 修改了两处源码 记录需要注意一下 分别是

      gdbusmessage.c:2698:30:
            if (signature_str)
            tupled_signature_str = g_strdup_printf ("(%s)", signature_str);
      
      dbusauth.c 1298
            if (line == NULL)
                  goto out;
                debug_print ("SERVER: WaitingForBegin, read '%s'", line);
      
      posted in MR Series
      BedRock
      BedRock
    • Reply: D1 SDK V1.01 固件在编译的过程中遇到的问题
      checking the name lister (/usr/bin/nm -B) 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 x86_64-pc-linux-gnu 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 /usr/bin/ld option to reload object files... -r
      checking for x86_64-linux-gnu-objdump... x86_64-linux-gnu-objdump
      checking how to recognize dependent libraries... pass_all
      checking for x86_64-linux-gnu-dlltool... no
      checking for dlltool... no
      checking how to associate runtime and link libraries... printf %s\n
      checking for x86_64-linux-gnu-ar... x86_64-linux-gnu-ar
      checking for archiver @FILE support... @
      checking for x86_64-linux-gnu-strip... x86_64-linux-gnu-strip
      checking for x86_64-linux-gnu-ranlib... x86_64-linux-gnu-ranlib
      checking command to parse /usr/bin/nm -B output from gcc object... ok
      checking for sysroot... no
      checking for x86_64-linux-gnu-mt... no
      checking for mt... mt
      checking if mt is a manifest tool... no
      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 gcc supports -fno-rtti -fno-exceptions... no
      checking for gcc option to produce PIC... -fPIC -DPIC
      checking if gcc PIC flag -fPIC -DPIC works... yes
      checking if gcc static flag -static works... yes
      checking if gcc supports -c -o file.o... yes
      checking if gcc supports -c -o file.o... (cached) yes
      checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) 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... yes
      checking whether a statically linked program can dlopen itself... no
      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... yes
      checking which extension is used for runtime loadable modules... .so
      checking which variable specifies run-time module search path... LD_LIBRARY_PATH
      checking for the default library search path... (cached)
      checking for library containing dlopen... -ldl
      checking for dlerror... yes
      checking for shl_load... (cached) no
      checking for shl_load in -ldld... (cached) no
      checking for dld_link in -ldld... no
      checking for _ prefix in compiled symbols... no
      checking whether deplibs are loaded by dlopen... yes
      checking for argz.h... yes
      checking for error_t... yes
      checking for argz_add... yes
      checking for argz_append... yes
      checking for argz_count... yes
      checking for argz_create_sep... yes
      checking for argz_insert... yes
      checking for argz_next... yes
      checking for argz_stringify... yes
      checking if argz actually works... yes
      checking whether libtool supports -dlopen/-dlpreopen... yes
      checking for unistd.h... (cached) yes
      checking for dl.h... no
      checking for sys/dl.h... no
      checking for dld.h... no
      checking for mach-o/dyld.h... no
      checking for dirent.h... yes
      checking for closedir... yes
      checking for opendir... yes
      checking for readdir... yes
      checking for strlcat... no
      checking for strlcpy... no
      checking for x86_64-linux-gnu-g++... x86_64-linux-gnu-g++
      checking whether we are using the GNU C++ compiler... yes
      checking whether x86_64-linux-gnu-g++ accepts -g... yes
      checking dependency style of x86_64-linux-gnu-g++... gcc3
      checking how to run the C++ preprocessor... x86_64-linux-gnu-g++ -E
      checking for ld used by x86_64-linux-gnu-g++... /usr/bin/ld -m elf_x86_64
      checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes
      checking whether the x86_64-linux-gnu-g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
      checking for x86_64-linux-gnu-g++ option to produce PIC... -fPIC -DPIC
      checking if x86_64-linux-gnu-g++ PIC flag -fPIC -DPIC works... yes
      checking if x86_64-linux-gnu-g++ static flag -static works... yes
      checking if x86_64-linux-gnu-g++ supports -c -o file.o... yes
      checking if x86_64-linux-gnu-g++ supports -c -o file.o... (cached) yes
      checking whether the x86_64-linux-gnu-g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
      checking dynamic linker characteristics... (cached) GNU/Linux ld.so
      checking how to hardcode library paths into programs... immediate
      checking for x86_64-linux-gnu-g77... no
      checking for x86_64-linux-gnu-xlf... no
      checking for x86_64-linux-gnu-f77... no
      checking for x86_64-linux-gnu-frt... no
      checking for x86_64-linux-gnu-pgf77... no
      checking for x86_64-linux-gnu-cf77... no
      checking for x86_64-linux-gnu-fort77... no
      checking for x86_64-linux-gnu-fl32... no
      checking for x86_64-linux-gnu-af77... no
      checking for x86_64-linux-gnu-xlf90... no
      checking for x86_64-linux-gnu-f90... no
      checking for x86_64-linux-gnu-pgf90... no
      checking for x86_64-linux-gnu-pghpf... no
      checking for x86_64-linux-gnu-epcf90... no
      checking for x86_64-linux-gnu-gfortran... x86_64-linux-gnu-gfortran
      checking whether we are using the GNU Fortran 77 compiler... yes
      checking whether x86_64-linux-gnu-gfortran accepts -g... yes
      checking if libtool supports shared libraries... yes
      checking whether to build shared libraries... yes
      checking whether to build static libraries... yes
      checking for x86_64-linux-gnu-gfortran option to produce PIC... -fPIC
      checking if x86_64-linux-gnu-gfortran PIC flag -fPIC works... yes
      checking if x86_64-linux-gnu-gfortran static flag -static works... yes
      checking if x86_64-linux-gnu-gfortran supports -c -o file.o... yes
      checking if x86_64-linux-gnu-gfortran supports -c -o file.o... (cached) yes
      checking whether the x86_64-linux-gnu-gfortran linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
      checking dynamic linker characteristics... (cached) GNU/Linux ld.so
      checking how to hardcode library paths into programs... immediate
      checking for x86_64-linux-gnu-gfortran... x86_64-linux-gnu-gfortran
      checking whether we are using the GNU Fortran compiler... yes
      checking whether x86_64-linux-gnu-gfortran accepts -g... yes
      checking if libtool supports shared libraries... yes
      checking whether to build shared libraries... yes
      checking whether to build static libraries... yes
      checking for x86_64-linux-gnu-gfortran option to produce PIC... -fPIC
      checking if x86_64-linux-gnu-gfortran PIC flag -fPIC works... yes
      checking if x86_64-linux-gnu-gfortran static flag -static works... yes
      checking if x86_64-linux-gnu-gfortran supports -c -o file.o... yes
      checking if x86_64-linux-gnu-gfortran supports -c -o file.o... (cached) yes
      checking whether the x86_64-linux-gnu-gfortran linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
      checking dynamic linker characteristics... (cached) GNU/Linux ld.so
      checking how to hardcode library paths into programs... immediate
      checking for x86_64-linux-gnu-gcj... no
      checking for gcj... no
      checking for x86_64-linux-gnu-windres... no
      checking for windres... no
      checking whether make supports order-only prerequisites... yes
      checking that generated files are newer than configure... done
      configure: creating ./config.status
      config.status: creating Makefile
      config.status: creating config.h
      config.status: executing tests/atconfig commands
      config.status: executing depfiles commands
      config.status: executing libtool commands
      touch /home/jie/allwinner/tina-d1-open/out/d1-nezha_min/compile_dir/host/libtool-2.4/.configured
      make  --jobserver-auth=3,4 -j -C /home/jie/allwinner/tina-d1-open/out/d1-nezha_min/compile_dir/host/libtool-2.4
      make[4]: warning: -j0 forced in submake: resetting jobserver mode.
      make[4]: Entering directory '/home/jie/allwinner/tina-d1-open/out/d1-nezha_min/compile_dir/host/libtool-2.4'
      rm -f libtoolize.tmp libtoolize
      set dummy `/usr/bin/env bash ./libltdl/config/mkstamp .`; shift; case 2.4 in *[acegikmoqsuwy]) TIMESTAMP=" $1 $2" ;; *) TIMESTAMP="" ;; esac; \
      sed -e 's,@EGREP\@,/home/jie/allwinner/tina-d1-open/out/host/bin/grep -E,g' -e 's,@FGREP\@,/home/jie/allwinner/tina-d1-open/out/host/bin/grep -F,g' -e 's,@GREP\@,/home/jie/allwinner/tina-d1-open/out/host/bin/grep,g' -e 's,@LN_S\@,ln -s,g' -e 's,@MACRO_VERSION\@,2.4,g' -e 's,@PACKAGE\@,libtool,g' -e 's,@PACKAGE_BUGREPORT\@,bug-libtool@gnu.org,g' -e 's,@PACKAGE_URL\@,http://www.gnu.org/software/libtool/,g' -e 's,@PACKAGE_NAME\@,GNU Libtool,g' -e 's,@PACKAGE_STRING\@,GNU Libtool 2.4,g' -e 's,@PACKAGE_TARNAME\@,libtool,g' -e 's,@PACKAGE_VERSION\@,2.4,g' -e 's,@SED\@,/home/jie/allwinner/tina-d1-open/out/host/bin/sed,g' -e 's,@VERSION\@,2.4,g' -e 's,@aclocaldir\@,/home/jie/allwinner/tina-d1-open/out/host/share/aclocal,g' -e 's,@datadir\@,/home/jie/allwinner/tina-d1-open/out/host/share,g' -e 's,@pkgdatadir\@,/home/jie/allwinner/tina-d1-open/out/host/share/libtool,g' -e 's,@host_triplet\@,x86_64-pc-linux-gnu,g' -e 's,@prefix\@,/home/jie/allwinner/tina-d1-open/out/host,g' -e "s,@TIMESTAMP\@,$TIMESTAMP,g" \
              -e 's,@aclocal_DATA\@,m4/argz.m4 m4/libtool.m4 m4/ltdl.m4 m4/ltoptions.m4 m4/ltsugar.m4 m4/ltversion.m4 m4/lt~obsolete.m4,g' \
              -e "s,@pkgltdl_files\@,libltdl/COPYING.LIB libltdl/README libltdl/Makefile.inc libltdl/Makefile.am libltdl/configure.ac libltdl/aclocal.m4 libltdl/Makefile.in libltdl/config-h.in libltdl/configure libltdl/argz_.h libltdl/argz.c libltdl/loaders/dld_link.c libltdl/loaders/dlopen.c libltdl/loaders/dyld.c libltdl/loaders/load_add_on.c libltdl/loaders/loadlibrary.c libltdl/loaders/shl_load.c libltdl/lt__dirent.c libltdl/lt__strl.c libltdl/libltdl/lt__alloc.h libltdl/libltdl/lt__dirent.h libltdl/libltdl/lt__glibc.h libltdl/libltdl/lt__private.h libltdl/libltdl/lt__strl.h libltdl/libltdl/lt_dlloader.h libltdl/libltdl/lt_error.h libltdl/libltdl/lt_system.h libltdl/libltdl/slist.h libltdl/loaders/preopen.c libltdl/lt__alloc.c libltdl/lt_dlloader.c libltdl/lt_error.c libltdl/ltdl.c libltdl/ltdl.h libltdl/slist.c,g" \
              -e "s,@pkgconfig_files\@,config/compile config/config.guess config/config.sub config/depcomp config/install-sh config/missing config/ltmain.sh,g" \
              ./libtoolize.in > libtoolize.tmp
      autom4te --language=m4sh -B libltdl/config libltdl/config/ltmain.m4sh > libltdl/config/ltmain.in
      chmod a+x libtoolize.tmp
      chmod a-w libtoolize.tmp
      mv -f libtoolize.tmp libtoolize
      sed -e s,@EGREP\@,/home/jie/allwinner/tina-d1-open/out/host/bin/grep -E,g -e s,@FGREP\@,/home/jie/allwinner/tina-d1-open/out/host/bin/grep -F,g -e s,@GREP\@,/home/jie/allwinner/tina-d1-open/out/host/bin/grep,g -e s,@LN_S\@,ln -s,g -e s,@MACRO_VERSION\@,2.4,g -e s,@PACKAGE\@,libtool,g -e s,@PACKAGE_BUGREPORT\@,bug-libtool@gnu.org,g -e s,@PACKAGE_URL\@,http://www.gnu.org/software/libtool/,g -e s,@PACKAGE_NAME\@,GNU Libtool,g -e s,@PACKAGE_STRING\@,GNU Libtool 2.4,g -e s,@PACKAGE_TARNAME\@,libtool,g -e s,@PACKAGE_VERSION\@,2.4,g -e s,@SED\@,/home/jie/allwinner/tina-d1-open/out/host/bin/sed,g -e s,@VERSION\@,2.4,g -e s,@aclocaldir\@,/home/jie/allwinner/tina-d1-open/out/host/share/aclocal,g -e s,@datadir\@,/home/jie/allwinner/tina-d1-open/out/host/share,g -e s,@pkgdatadir\@,/home/jie/allwinner/tina-d1-open/out/host/share/libtool,g -e s,@host_triplet\@,x86_64-pc-linux-gnu,g -e s,@prefix\@,/home/jie/allwinner/tina-d1-open/out/host,g -e s,@TIMESTAMP\@,,g -e s,@package_revision\@,1.3293, ./libltdl/config/ltmain.in > ./libltdl/config/ltmain.sh
      /usr/bin/env bash ./config.status libtool
      config.status: executing libtool commands
      make  all-recursive
      make[5]: Entering directory '/home/jie/allwinner/tina-d1-open/out/d1-nezha_min/compile_dir/host/libtool-2.4'
      make[6]: Entering directory '/home/jie/allwinner/tina-d1-open/out/d1-nezha_min/compile_dir/host/libtool-2.4'
      depbase=`echo libltdl/lt__strl.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
      /usr/bin/env bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -DLT_CONFIG_H='<config.h>' -DLTDL -I. -I. -Ilibltdl -I./libltdl -I./libltdl/libltdl -I/home/jie/allwinner/tina-d1-open/out/host/include -I/home/jie/allwinner/tina-d1-open/out/host/usr/include   -O2 -I/home/jie/allwinner/tina-d1-open/out/host/include -I/home/jie/allwinner/tina-d1-open/out/host/usr/include  -MT libltdl/lt__strl.lo -MD -MP -MF $depbase.Tpo -c -o libltdl/lt__strl.lo libltdl/lt__strl.c &&\
      mv -f $depbase.Tpo $depbase.Plo
      PATH=.:$PATH; export PATH; /usr/bin/env bash /home/jie/allwinner/tina-d1-open/out/d1-nezha_min/compile_dir/host/libtool-2.4/libltdl/config/missing help2man --output=doc/libtool.1 --help-option=--help-all libtool
      PATH=.:$PATH; export PATH; /usr/bin/env bash /home/jie/allwinner/tina-d1-open/out/d1-nezha_min/compile_dir/host/libtool-2.4/libltdl/config/missing help2man --output=doc/libtoolize.1 libtoolize
      make[7]: Entering directory '/home/jie/allwinner/tina-d1-open/out/d1-nezha_min/compile_dir/host/libtool-2.4'
      cd ./libltdl && \
      sed -e 's,config/mdate-sh,,' -e 's,config/texinfo.tex,,' \
          -e 's,config/mkinstalldirs,,' \
          < Makefile.in > Makefile.inT && \
      mv -f Makefile.inT Makefile.in
      /usr/bin/env bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -DLTDLOPEN=libltdl -DLT_CONFIG_H='<config.h>' -DLTDL -I. -I. -Ilibltdl -I./libltdl -I./libltdl/libltdl -I/home/jie/allwinner/tina-d1-open/out/host/include -I/home/jie/allwinner/tina-d1-open/out/host/usr/include   -O2 -I/home/jie/allwinner/tina-d1-open/out/host/include -I/home/jie/allwinner/tina-d1-open/out/host/usr/include  -MT libltdl/loaders/libltdl_libltdl_la-preopen.lo -MD -MP -MF libltdl/loaders/.deps/libltdl_libltdl_la-preopen.Tpo -c -o libltdl/loaders/libltdl_libltdl_la-preopen.lo `test -f 'libltdl/loaders/preopen.c' || echo './'`libltdl/loaders/preopen.c
      /usr/bin/env bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -DLTDLOPEN=libltdl -DLT_CONFIG_H='<config.h>' -DLTDL -I. -I. -Ilibltdl -I./libltdl -I./libltdl/libltdl -I/home/jie/allwinner/tina-d1-open/out/host/include -I/home/jie/allwinner/tina-d1-open/out/host/usr/include   -O2 -I/home/jie/allwinner/tina-d1-open/out/host/include -I/home/jie/allwinner/tina-d1-open/out/host/usr/include  -MT libltdl/libltdl_libltdl_la-lt__alloc.lo -MD -MP -MF libltdl/.deps/libltdl_libltdl_la-lt__alloc.Tpo -c -o libltdl/libltdl_libltdl_la-lt__alloc.lo `test -f 'libltdl/lt__alloc.c' || echo './'`libltdl/lt__alloc.c
      /usr/bin/env bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -DLTDLOPEN=libltdl -DLT_CONFIG_H='<config.h>' -DLTDL -I. -I. -Ilibltdl -I./libltdl -I./libltdl/libltdl -I/home/jie/allwinner/tina-d1-open/out/host/include -I/home/jie/allwinner/tina-d1-open/out/host/usr/include   -O2 -I/home/jie/allwinner/tina-d1-open/out/host/include -I/home/jie/allwinner/tina-d1-open/out/host/usr/include  -MT libltdl/libltdl_libltdl_la-lt_dlloader.lo -MD -MP -MF libltdl/.deps/libltdl_libltdl_la-lt_dlloader.Tpo -c -o libltdl/libltdl_libltdl_la-lt_dlloader.lo `test -f 'libltdl/lt_dlloader.c' || echo './'`libltdl/lt_dlloader.c
      make[7]: Leaving directory '/home/jie/allwinner/tina-d1-open/out/d1-nezha_min/compile_dir/host/libtool-2.4'
      /usr/bin/env bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -DLTDLOPEN=libltdl -DLT_CONFIG_H='<config.h>' -DLTDL -I. -I. -Ilibltdl -I./libltdl -I./libltdl/libltdl -I/home/jie/allwinner/tina-d1-open/out/host/include -I/home/jie/allwinner/tina-d1-open/out/host/usr/include   -O2 -I/home/jie/allwinner/tina-d1-open/out/host/include -I/home/jie/allwinner/tina-d1-open/out/host/usr/include  -MT libltdl/libltdl_libltdl_la-lt_error.lo -MD -MP -MF libltdl/.deps/libltdl_libltdl_la-lt_error.Tpo -c -o libltdl/libltdl_libltdl_la-lt_error.lo `test -f 'libltdl/lt_error.c' || echo './'`libltdl/lt_error.c
      echo stamp > libltdl/stamp-mk
      /usr/bin/env bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -DLTDLOPEN=libltdl -DLT_CONFIG_H='<config.h>' -DLTDL -I. -I. -Ilibltdl -I./libltdl -I./libltdl/libltdl -I/home/jie/allwinner/tina-d1-open/out/host/include -I/home/jie/allwinner/tina-d1-open/out/host/usr/include   -O2 -I/home/jie/allwinner/tina-d1-open/out/host/include -I/home/jie/allwinner/tina-d1-open/out/host/usr/include  -MT libltdl/libltdl_libltdl_la-ltdl.lo -MD -MP -MF libltdl/.deps/libltdl_libltdl_la-ltdl.Tpo -c -o libltdl/libltdl_libltdl_la-ltdl.lo `test -f 'libltdl/ltdl.c' || echo './'`libltdl/ltdl.c
      /usr/bin/env bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -DLTDLOPEN=libltdl -DLT_CONFIG_H='<config.h>' -DLTDL -I. -I. -Ilibltdl -I./libltdl -I./libltdl/libltdl -I/home/jie/allwinner/tina-d1-open/out/host/include -I/home/jie/allwinner/tina-d1-open/out/host/usr/include   -O2 -I/home/jie/allwinner/tina-d1-open/out/host/include -I/home/jie/allwinner/tina-d1-open/out/host/usr/include  -MT libltdl/libltdl_libltdl_la-slist.lo -MD -MP -MF libltdl/.deps/libltdl_libltdl_la-slist.Tpo -c -o libltdl/libltdl_libltdl_la-slist.lo `test -f 'libltdl/slist.c' || echo './'`libltdl/slist.c
      depbase=`echo libltdl/loaders/dlopen.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\
      /usr/bin/env bash ./libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.  -DLT_CONFIG_H='<config.h>' -DLTDL -I. -I. -Ilibltdl -I./libltdl -I./libltdl/libltdl -I/home/jie/allwinner/tina-d1-open/out/host/include -I/home/jie/allwinner/tina-d1-open/out/host/usr/include   -O2 -I/home/jie/allwinner/tina-d1-open/out/host/include -I/home/jie/allwinner/tina-d1-open/out/host/usr/include  -MT libltdl/loaders/dlopen.lo -MD -MP -MF $depbase.Tpo -c -o libltdl/loaders/dlopen.lo libltdl/loaders/dlopen.c &&\
      mv -f $depbase.Tpo $depbase.Plo
      OpenWrt-libtool: compile:  gcc -DHAVE_CONFIG_H -I. "-DLT_CONFIG_H=<config.h>" -DLTDL -I. -I. -Ilibltdl -I./libltdl -I./libltdl/libltdl -I/home/jie/allwinner/tina-d1-open/out/host/include -I/home/jie/allwinner/tina-d1-open/out/host/usr/include -O2 -I/home/jie/allwinner/tina-d1-open/out/host/include -I/home/jie/allwinner/tina-d1-open/out/host/usr/include -MT libltdl/lt__strl.lo -MD -MP -MF libltdl/.deps/lt__strl.Tpo -c libltdl/lt__strl.c  -fPIC -DPIC -o libltdl/.libs/lt__strl.o
      OpenWrt-libtool: compile:  gcc -DHAVE_CONFIG_H -I. -DLTDLOPEN=libltdl "-DLT_CONFIG_H=<config.h>" -DLTDL -I. -I. -Ilibltdl -I./libltdl -I./libltdl/libltdl -I/home/jie/allwinner/tina-d1-open/out/host/include -I/home/jie/allwinner/tina-d1-open/out/host/usr/include -O2 -I/home/jie/allwinner/tina-d1-open/out/host/include -I/home/jie/allwinner/tina-d1-open/out/host/usr/include -MT libltdl/libltdl_libltdl_la-lt__alloc.lo -MD -MP -MF libltdl/.deps/libltdl_libltdl_la-lt__alloc.Tpo -c libltdl/lt__alloc.c  -fPIC -DPIC -o libltdl/.libs/libltdl_libltdl_la-lt__alloc.o
      OpenWrt-libtool: compile:  gcc -DHAVE_CONFIG_H -I. -DLTDLOPEN=libltdl "-DLT_CONFIG_H=<config.h>" -DLTDL -I. -I. -Ilibltdl -I./libltdl -I./libltdl/libltdl -I/home/jie/allwinner/tina-d1-open/out/host/include -I/home/jie/allwinner/tina-d1-open/out/host/usr/include -O2 -I/home/jie/allwinner/tina-d1-open/out/host/include -I/home/jie/allwinner/tina-d1-open/out/host/usr/include -MT libltdl/libltdl_libltdl_la-lt_error.lo -MD -MP -MF libltdl/.deps/libltdl_libltdl_la-lt_error.Tpo -c libltdl/lt_error.c  -fPIC -DPIC -o libltdl/.libs/libltdl_libltdl_la-lt_error.o
      OpenWrt-libtool: compile:  gcc -DHAVE_CONFIG_H -I. -DLTDLOPEN=libltdl "-DLT_CONFIG_H=<config.h>" -DLTDL -I. -I. -Ilibltdl -I./libltdl -I./libltdl/libltdl -I/home/jie/allwinner/tina-d1-open/out/host/include -I/home/jie/allwinner/tina-d1-open/out/host/usr/include -O2 -I/home/jie/allwinner/tina-d1-open/out/host/include -I/home/jie/allwinner/tina-d1-open/out/host/usr/include -MT libltdl/libltdl_libltdl_la-lt_dlloader.lo -MD -MP -MF libltdl/.deps/libltdl_libltdl_la-lt_dlloader.Tpo -c libltdl/lt_dlloader.c  -fPIC -DPIC -o libltdl/.libs/libltdl_libltdl_la-lt_dlloader.o
      OpenWrt-libtool: compile:  gcc -DHAVE_CONFIG_H -I. -DLTDLOPEN=libltdl "-DLT_CONFIG_H=<config.h>" -DLTDL -I. -I. -Ilibltdl -I./libltdl -I./libltdl/libltdl -I/home/jie/allwinner/tina-d1-open/out/host/include -I/home/jie/allwinner/tina-d1-open/out/host/usr/include -O2 -I/home/jie/allwinner/tina-d1-open/out/host/include -I/home/jie/allwinner/tina-d1-open/out/host/usr/include -MT libltdl/libltdl_libltdl_la-slist.lo -MD -MP -MF libltdl/.deps/libltdl_libltdl_la-slist.Tpo -c libltdl/slist.c  -fPIC -DPIC -o libltdl/.libs/libltdl_libltdl_la-slist.o
      OpenWrt-libtool: compile:  gcc -DHAVE_CONFIG_H -I. -DLTDLOPEN=libltdl "-DLT_CONFIG_H=<config.h>" -DLTDL -I. -I. -Ilibltdl -I./libltdl -I./libltdl/libltdl -I/home/jie/allwinner/tina-d1-open/out/host/include -I/home/jie/allwinner/tina-d1-open/out/host/usr/include -O2 -I/home/jie/allwinner/tina-d1-open/out/host/include -I/home/jie/allwinner/tina-d1-open/out/host/usr/include -MT libltdl/loaders/libltdl_libltdl_la-preopen.lo -MD -MP -MF libltdl/loaders/.deps/libltdl_libltdl_la-preopen.Tpo -c libltdl/loaders/preopen.c  -fPIC -DPIC -o libltdl/loaders/.libs/libltdl_libltdl_la-preopen.o
      OpenWrt-libtool: compile:  gcc -DHAVE_CONFIG_H -I. -DLTDLOPEN=libltdl "-DLT_CONFIG_H=<config.h>" -DLTDL -I. -I. -Ilibltdl -I./libltdl -I./libltdl/libltdl -I/home/jie/allwinner/tina-d1-open/out/host/include -I/home/jie/allwinner/tina-d1-open/out/host/usr/include -O2 -I/home/jie/allwinner/tina-d1-open/out/host/include -I/home/jie/allwinner/tina-d1-open/out/host/usr/include -MT libltdl/libltdl_libltdl_la-ltdl.lo -MD -MP -MF libltdl/.deps/libltdl_libltdl_la-ltdl.Tpo -c libltdl/ltdl.c  -fPIC -DPIC -o libltdl/.libs/libltdl_libltdl_la-ltdl.o
      OpenWrt-libtool: compile:  gcc -DHAVE_CONFIG_H -I. "-DLT_CONFIG_H=<config.h>" -DLTDL -I. -I. -Ilibltdl -I./libltdl -I./libltdl/libltdl -I/home/jie/allwinner/tina-d1-open/out/host/include -I/home/jie/allwinner/tina-d1-open/out/host/usr/include -O2 -I/home/jie/allwinner/tina-d1-open/out/host/include -I/home/jie/allwinner/tina-d1-open/out/host/usr/include -MT libltdl/loaders/dlopen.lo -MD -MP -MF libltdl/loaders/.deps/dlopen.Tpo -c libltdl/loaders/dlopen.c  -fPIC -DPIC -o libltdl/loaders/.libs/dlopen.o
      OpenWrt-libtool: compile:  gcc -DHAVE_CONFIG_H -I. "-DLT_CONFIG_H=<config.h>" -DLTDL -I. -I. -Ilibltdl -I./libltdl -I./libltdl/libltdl -I/home/jie/allwinner/tina-d1-open/out/host/include -I/home/jie/allwinner/tina-d1-open/out/host/usr/include -O2 -I/home/jie/allwinner/tina-d1-open/out/host/include -I/home/jie/allwinner/tina-d1-open/out/host/usr/include -MT libltdl/lt__strl.lo -MD -MP -MF libltdl/.deps/lt__strl.Tpo -c libltdl/lt__strl.c -o libltdl/lt__strl.o >/dev/null 2>&1
      OpenWrt-libtool: compile:  gcc -DHAVE_CONFIG_H -I. -DLTDLOPEN=libltdl "-DLT_CONFIG_H=<config.h>" -DLTDL -I. -I. -Ilibltdl -I./libltdl -I./libltdl/libltdl -I/home/jie/allwinner/tina-d1-open/out/host/include -I/home/jie/allwinner/tina-d1-open/out/host/usr/include -O2 -I/home/jie/allwinner/tina-d1-open/out/host/include -I/home/jie/allwinner/tina-d1-open/out/host/usr/include -MT libltdl/libltdl_libltdl_la-lt__alloc.lo -MD -MP -MF libltdl/.deps/libltdl_libltdl_la-lt__alloc.Tpo -c libltdl/lt__alloc.c -o libltdl/libltdl_libltdl_la-lt__alloc.o >/dev/null 2>&1
      OpenWrt-libtool: compile:  gcc -DHAVE_CONFIG_H -I. -DLTDLOPEN=libltdl "-DLT_CONFIG_H=<config.h>" -DLTDL -I. -I. -Ilibltdl -I./libltdl -I./libltdl/libltdl -I/home/jie/allwinner/tina-d1-open/out/host/include -I/home/jie/allwinner/tina-d1-open/out/host/usr/include -O2 -I/home/jie/allwinner/tina-d1-open/out/host/include -I/home/jie/allwinner/tina-d1-open/out/host/usr/include -MT libltdl/libltdl_libltdl_la-slist.lo -MD -MP -MF libltdl/.deps/libltdl_libltdl_la-slist.Tpo -c libltdl/slist.c -o libltdl/libltdl_libltdl_la-slist.o >/dev/null 2>&1
      OpenWrt-libtool: compile:  gcc -DHAVE_CONFIG_H -I. -DLTDLOPEN=libltdl "-DLT_CONFIG_H=<config.h>" -DLTDL -I. -I. -Ilibltdl -I./libltdl -I./libltdl/libltdl -I/home/jie/allwinner/tina-d1-open/out/host/include -I/home/jie/allwinner/tina-d1-open/out/host/usr/include -O2 -I/home/jie/allwinner/tina-d1-open/out/host/include -I/home/jie/allwinner/tina-d1-open/out/host/usr/include -MT libltdl/loaders/libltdl_libltdl_la-preopen.lo -MD -MP -MF libltdl/loaders/.deps/libltdl_libltdl_la-preopen.Tpo -c libltdl/loaders/preopen.c -o libltdl/loaders/libltdl_libltdl_la-preopen.o >/dev/null 2>&1
      OpenWrt-libtool: compile:  gcc -DHAVE_CONFIG_H -I. -DLTDLOPEN=libltdl "-DLT_CONFIG_H=<config.h>" -DLTDL -I. -I. -Ilibltdl -I./libltdl -I./libltdl/libltdl -I/home/jie/allwinner/tina-d1-open/out/host/include -I/home/jie/allwinner/tina-d1-open/out/host/usr/include -O2 -I/home/jie/allwinner/tina-d1-open/out/host/include -I/home/jie/allwinner/tina-d1-open/out/host/usr/include -MT libltdl/libltdl_libltdl_la-lt_error.lo -MD -MP -MF libltdl/.deps/libltdl_libltdl_la-lt_error.Tpo -c libltdl/lt_error.c -o libltdl/libltdl_libltdl_la-lt_error.o >/dev/null 2>&1
      OpenWrt-libtool: compile:  gcc -DHAVE_CONFIG_H -I. -DLTDLOPEN=libltdl "-DLT_CONFIG_H=<config.h>" -DLTDL -I. -I. -Ilibltdl -I./libltdl -I./libltdl/libltdl -I/home/jie/allwinner/tina-d1-open/out/host/include -I/home/jie/allwinner/tina-d1-open/out/host/usr/include -O2 -I/home/jie/allwinner/tina-d1-open/out/host/include -I/home/jie/allwinner/tina-d1-open/out/host/usr/include -MT libltdl/libltdl_libltdl_la-lt_dlloader.lo -MD -MP -MF libltdl/.deps/libltdl_libltdl_la-lt_dlloader.Tpo -c libltdl/lt_dlloader.c -o libltdl/libltdl_libltdl_la-lt_dlloader.o >/dev/null 2>&1
      mv -f libltdl/.deps/libltdl_libltdl_la-lt__alloc.Tpo libltdl/.deps/libltdl_libltdl_la-lt__alloc.Plo
      OpenWrt-libtool: compile:  gcc -DHAVE_CONFIG_H -I. "-DLT_CONFIG_H=<config.h>" -DLTDL -I. -I. -Ilibltdl -I./libltdl -I./libltdl/libltdl -I/home/jie/allwinner/tina-d1-open/out/host/include -I/home/jie/allwinner/tina-d1-open/out/host/usr/include -O2 -I/home/jie/allwinner/tina-d1-open/out/host/include -I/home/jie/allwinner/tina-d1-open/out/host/usr/include -MT libltdl/loaders/dlopen.lo -MD -MP -MF libltdl/loaders/.deps/dlopen.Tpo -c libltdl/loaders/dlopen.c -o libltdl/loaders/dlopen.o >/dev/null 2>&1
      mv -f libltdl/loaders/.deps/libltdl_libltdl_la-preopen.Tpo libltdl/loaders/.deps/libltdl_libltdl_la-preopen.Plo
      mv -f libltdl/.deps/libltdl_libltdl_la-lt_dlloader.Tpo libltdl/.deps/libltdl_libltdl_la-lt_dlloader.Plo
      mv -f libltdl/.deps/libltdl_libltdl_la-lt_error.Tpo libltdl/.deps/libltdl_libltdl_la-lt_error.Plo
      mv -f libltdl/.deps/libltdl_libltdl_la-slist.Tpo libltdl/.deps/libltdl_libltdl_la-slist.Plo
      /usr/bin/env bash ./libtool  --tag=CC   --mode=link gcc  -O2 -I/home/jie/allwinner/tina-d1-open/out/host/include -I/home/jie/allwinner/tina-d1-open/out/host/usr/include  -module -avoid-version -L/home/jie/allwinner/tina-d1-open/out/host/lib -L/home/jie/allwinner/tina-d1-open/out/host/usr/lib  -o libltdl/dlopen.la  libltdl/loaders/dlopen.lo -ldl -ldl
      OpenWrt-libtool: link: x86_64-linux-gnu-ar cru libltdl/.libs/dlopen.a libltdl/loaders/.libs/dlopen.o
      x86_64-linux-gnu-ar: `u' modifier ignored since `D' is the default (see `U')
      OpenWrt-libtool: link: x86_64-linux-gnu-ranlib libltdl/.libs/dlopen.a
      OpenWrt-libtool: link: ( cd "libltdl/.libs" && rm -f "dlopen.la" && ln -s "../dlopen.la" "dlopen.la" )
      OpenWrt-libtool: compile:  gcc -DHAVE_CONFIG_H -I. -DLTDLOPEN=libltdl "-DLT_CONFIG_H=<config.h>" -DLTDL -I. -I. -Ilibltdl -I./libltdl -I./libltdl/libltdl -I/home/jie/allwinner/tina-d1-open/out/host/include -I/home/jie/allwinner/tina-d1-open/out/host/usr/include -O2 -I/home/jie/allwinner/tina-d1-open/out/host/include -I/home/jie/allwinner/tina-d1-open/out/host/usr/include -MT libltdl/libltdl_libltdl_la-ltdl.lo -MD -MP -MF libltdl/.deps/libltdl_libltdl_la-ltdl.Tpo -c libltdl/ltdl.c -o libltdl/libltdl_libltdl_la-ltdl.o >/dev/null 2>&1
      mv -f libltdl/.deps/libltdl_libltdl_la-ltdl.Tpo libltdl/.deps/libltdl_libltdl_la-ltdl.Plo
      /usr/bin/env bash ./libtool  --tag=CC   --mode=link gcc  -O2 -I/home/jie/allwinner/tina-d1-open/out/host/include -I/home/jie/allwinner/tina-d1-open/out/host/usr/include  -no-undefined -version-info 10:0:3 -dlpreopen libltdl/dlopen.la  -L/home/jie/allwinner/tina-d1-open/out/host/lib -L/home/jie/allwinner/tina-d1-open/out/host/usr/lib  -o libltdl/libltdl.la -rpath /home/jie/allwinner/tina-d1-open/out/host/lib libltdl/loaders/libltdl_libltdl_la-preopen.lo libltdl/libltdl_libltdl_la-lt__alloc.lo libltdl/libltdl_libltdl_la-lt_dlloader.lo libltdl/libltdl_libltdl_la-lt_error.lo libltdl/libltdl_libltdl_la-ltdl.lo libltdl/libltdl_libltdl_la-slist.lo libltdl/lt__strl.lo -ldl
      OpenWrt-libtool: link: rm -f libltdl/.libs/libltdl.nm libltdl/.libs/libltdl.nmS libltdl/.libs/libltdl.nmT
      OpenWrt-libtool: link: (cd libltdl/.libs && gcc -O2 -I/home/jie/allwinner/tina-d1-open/out/host/include -c -fno-builtin  -fPIC -DPIC "libltdlS.c")
      OpenWrt-libtool: link: rm -f "libltdl/.libs/libltdlS.c" "libltdl/.libs/libltdl.nm" "libltdl/.libs/libltdl.nmS" "libltdl/.libs/libltdl.nmT"
      OpenWrt-libtool: link: (cd libltdl/.libs/libltdl.lax/dlopen.a && x86_64-linux-gnu-ar x "/home/jie/allwinner/tina-d1-open/out/d1-nezha_min/compile_dir/host/libtool-2.4/libltdl/.libs/dlopen.a")
      OpenWrt-libtool: link: gcc -shared  -fPIC -DPIC  libltdl/loaders/.libs/libltdl_libltdl_la-preopen.o libltdl/.libs/libltdl_libltdl_la-lt__alloc.o libltdl/.libs/libltdl_libltdl_la-lt_dlloader.o libltdl/.libs/libltdl_libltdl_la-lt_error.o libltdl/.libs/libltdl_libltdl_la-ltdl.o libltdl/.libs/libltdl_libltdl_la-slist.o libltdl/.libs/lt__strl.o libltdl/.libs/libltdlS.o  libltdl/.libs/libltdl.lax/dlopen.a/dlopen.o   -ldl -L/home/jie/allwinner/tina-d1-open/out/host/lib -L/home/jie/allwinner/tina-d1-open/out/host/usr/lib  -O2   -Wl,-soname -Wl,libltdl.so.7 -o libltdl/.libs/libltdl.so.7.3.0
      OpenWrt-libtool: link: (cd "libltdl/.libs" && rm -f "libltdl.so.7" && ln -s "libltdl.so.7.3.0" "libltdl.so.7")
      OpenWrt-libtool: link: (cd "libltdl/.libs" && rm -f "libltdl.so" && ln -s "libltdl.so.7.3.0" "libltdl.so")
      OpenWrt-libtool: link: (cd libltdl/.libs/libltdl.lax/lt1-dlopen.a && x86_64-linux-gnu-ar x "/home/jie/allwinner/tina-d1-open/out/d1-nezha_min/compile_dir/host/libtool-2.4/libltdl/.libs/dlopen.a")
      OpenWrt-libtool: link: x86_64-linux-gnu-ar cru libltdl/.libs/libltdl.a  libltdl/loaders/libltdl_libltdl_la-preopen.o libltdl/libltdl_libltdl_la-lt__alloc.o libltdl/libltdl_libltdl_la-lt_dlloader.o libltdl/libltdl_libltdl_la-lt_error.o libltdl/libltdl_libltdl_la-ltdl.o libltdl/libltdl_libltdl_la-slist.o libltdl/lt__strl.o libltdl/.libs/libltdlS.o  libltdl/.libs/libltdl.lax/lt1-dlopen.a/dlopen.o
      x86_64-linux-gnu-ar: `u' modifier ignored since `D' is the default (see `U')
      OpenWrt-libtool: link: x86_64-linux-gnu-ranlib libltdl/.libs/libltdl.a
      OpenWrt-libtool: link: rm -fr libltdl/.libs/libltdl.lax libltdl/.libs/libltdl.lax
      OpenWrt-libtool: link: ( cd "libltdl/.libs" && rm -f "libltdl.la" && ln -s "../libltdl.la" "libltdl.la" )
      make[6]: Leaving directory '/home/jie/allwinner/tina-d1-open/out/d1-nezha_min/compile_dir/host/libtool-2.4'
      make[5]: Leaving directory '/home/jie/allwinner/tina-d1-open/out/d1-nezha_min/compile_dir/host/libtool-2.4'
      make[4]: Leaving directory '/home/jie/allwinner/tina-d1-open/out/d1-nezha_min/compile_dir/host/libtool-2.4'
      touch /home/jie/allwinner/tina-d1-open/out/d1-nezha_min/compile_dir/host/libtool-2.4/.built
      make[3]: Leaving directory '/home/jie/allwinner/tina-d1-open/tools/libtool'
      make[2]: Leaving directory '/home/jie/allwinner/tina-d1-open'
      make[1]: *** [tools/Makefile:133: /home/jie/allwinner/tina-d1-open/out/d1-nezha_min/staging_dir/target/stamp/.tools_install_yyyynyyynyyyyyyynnnyyyyyyyyyyynnyyyyyyyynyyynyyyyy] Error 2
      make[1]: Leaving directory '/home/jie/allwinner/tina-d1-open'
      make: *** [/home/jie/allwinner/tina-d1-open/build/toplevel.mk:306:world] 错误 2
      [2]+  已完成               $T/tools/build/buildserver --path $T
      
      #### make failed to build some targets (05:43 (mm:ss)) ####
      
      posted in MR Series
      BedRock
      BedRock
    • Reply: D1 SDK V1.01 固件在编译的过程中遇到的问题

      编译迷你固件出现了g++错误引起的这个问题导致后面的一系列文件找不到的问题,仔细看了一下下面的checking日志,是因为我的系统中关于X86_64_gnu 的一些 文件没有找到,这些需要安装吗还是过程中需要的工具。

      g++: fatal error: Killed signal terminated program cc1plus
      compilation terminated.
      make[6]: *** [Source/CMakeFiles/CMakeLib.dir/build.make:2367: Source/CMakeFiles/CMakeLib.dir/cmQtAutoGeneratorInitializer.cxx.o] Error 1
      make[6]: *** Waiting for unfinished jobs....
      cc -L/home/jie/allwinner/tina-d1-open/out/host/lib -L/home/jie/allwinner/tina-d1-open/out/host/usr/lib   fatlabel.o boot.o check.o common.o fat.o file.o io.o lfn.o charconv.o   -o fatlabel
      cc  -O2 -fomit-frame-pointer -D_GNU_SOURCE  -Wall -Wextra -Wno-sign-compare -Wno-missing-field-initializers -Wmissing-prototypes -Wstrict-prototypes -Wwrite-strings -g   -c -o fsck.fat.o src/fsck.fat.c
      autoreconf: configure.ac: tracing
      cc -L/home/jie/allwinner/tina-d1-open/out/host/lib -L/home/jie/allwinner/tina-d1-open/out/host/usr/lib   fsck.fat.o boot.o check.o common.o fat.o file.o io.o lfn.o charconv.o   -o fsck.fat
      cc  -O2 -fomit-frame-pointer -D_GNU_SOURCE  -Wall -Wextra -Wno-sign-compare -Wno-missing-field-initializers -Wmissing-prototypes -Wstrict-prototypes -Wwrite-strings -g   -c -o mkfs.fat.o src/mkfs.fat.c
      src/mkfs.fat.c: In function 'get_list_blocks':
      src/mkfs.fat.c:468:2: warning: ignoring return value of 'fscanf', declared with attribute warn_unused_result [-Wunused-result]
        468 |  fscanf(listfile, "%ld\n", &blockno);
            |  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
      autoreconf: running: /home/jie/allwinner/tina-d1-open/out/d1-nezha_min/compile_dir/host/libtool-2.4/libltdl/config/libtoolize --copy --force --ltdl
      libtoolize: Bootstrap detected, no files installed.
      cc -L/home/jie/allwinner/tina-d1-open/out/host/lib -L/home/jie/allwinner/tina-d1-open/out/host/usr/lib   mkfs.fat.o   -o mkfs.fat
      make[4]: Leaving directory '/home/jie/allwinner/tina-d1-open/out/d1-nezha_min/compile_dir/host/dosfstools-3.0.27'
      touch /home/jie/allwinner/tina-d1-open/out/d1-nezha_min/compile_dir/host/dosfstools-3.0.27/.built
      make[3]: Leaving directory '/home/jie/allwinner/tina-d1-open/tools/dosfstools'
      make[3]: Entering directory '/home/jie/allwinner/tina-d1-open/tools/dosfstools'
      install -m0755 /home/jie/allwinner/tina-d1-open/out/d1-nezha_min/compile_dir/host/dosfstools-3.0.27/mkfs.fat /home/jie/allwinner/tina-d1-open/out/host/bin/
      ln -sf mkfs.fat /home/jie/allwinner/tina-d1-open/out/host/bin/mkdosfs
      mkdir -p /home/jie/allwinner/tina-d1-open/out/host/stamp
      touch /home/jie/allwinner/tina-d1-open/out/d1-nezha_min/compile_dir/host/dosfstools-3.0.27/.built
      touch /home/jie/allwinner/tina-d1-open/out/host/stamp/.dosfstools_installed
      make[3]: Leaving directory '/home/jie/allwinner/tina-d1-open/tools/dosfstools'
      autoreconf: running: /home/jie/allwinner/tina-d1-open/out/host/bin/autoconf --force
      autoreconf: running: /home/jie/allwinner/tina-d1-open/out/host/bin/autoheader --force
      autoreconf: running: /home/jie/allwinner/tina-d1-open/out/host/bin/automake --add-missing --copy --force-missing
      make[6]: Leaving directory '/home/jie/allwinner/tina-d1-open/out/d1-nezha_min/compile_dir/host/cmake-3.4.3'
      make[5]: *** [CMakeFiles/Makefile2:1969: Source/CMakeFiles/CMakeLib.dir/all] Error 2
      make[5]: Leaving directory '/home/jie/allwinner/tina-d1-open/out/d1-nezha_min/compile_dir/host/cmake-3.4.3'
      make[4]: *** [Makefile:161: all] Error 2
      make[4]: Leaving directory '/home/jie/allwinner/tina-d1-open/out/d1-nezha_min/compile_dir/host/cmake-3.4.3'
      make[3]: *** [Makefile:29: /home/jie/allwinner/tina-d1-open/out/d1-nezha_min/compile_dir/host/cmake-3.4.3/.built] Error 2
      make[3]: Leaving directory '/home/jie/allwinner/tina-d1-open/tools/cmake'
      make[2]: *** [tools/Makefile:135: tools/cmake/compile] Error 2
      make[2]: *** Waiting for unfinished jobs....
      parallel-tests: installing 'libltdl/config/test-driver'
      autoreconf: Leaving directory `.'
      autoreconf: Entering directory `libltdl'
      autoreconf: configure.ac: not using Gettext
      autoreconf: running: /home/jie/allwinner/tina-d1-open/out/host/bin/aclocal --force -I m4
      autoreconf: configure.ac: tracing
      autoreconf: running: /home/jie/allwinner/tina-d1-open/out/d1-nezha_min/compile_dir/host/libtool-2.4/libltdl/config/libtoolize --copy --force --ltdl
      libtoolize: Bootstrap detected, no files installed.
      autoreconf: running: /home/jie/allwinner/tina-d1-open/out/host/bin/autoconf --force
      autoreconf: running: /home/jie/allwinner/tina-d1-open/out/host/bin/autoheader --force
      autoreconf: running: /home/jie/allwinner/tina-d1-open/out/host/bin/automake --add-missing --copy --force-missing
      Makefile.am:113: warning: source file 'loaders/dld_link.c' is in a subdirectory,
      Makefile.am:113: but option 'subdir-objects' is disabled
      automake: warning: possible forward-incompatibility.
      automake: At least a source file is in a subdirectory, but the 'subdir-objects'
      automake: automake option hasn't been enabled.  For now, the corresponding output
      automake: object file(s) will be placed in the top-level directory.  However,
      automake: this behaviour will change in future Automake versions: they will
      automake: unconditionally cause object files to be placed in the same subdirectory
      automake: of the corresponding sources.
      automake: You are advised to start using 'subdir-objects' option throughout your
      automake: project, to avoid future incompatibilities.
      Makefile.am:109: warning: source file 'loaders/dlopen.c' is in a subdirectory,
      Makefile.am:109: but option 'subdir-objects' is disabled
      Makefile.am:117: warning: source file 'loaders/dyld.c' is in a subdirectory,
      Makefile.am:117: but option 'subdir-objects' is disabled
      Makefile.am:67: warning: source file 'loaders/preopen.c' is in a subdirectory,
      Makefile.am:67: but option 'subdir-objects' is disabled
      Makefile.am:120: warning: source file 'loaders/load_add_on.c' is in a subdirectory,
      Makefile.am:120: but option 'subdir-objects' is disabled
      Makefile.am:123: warning: source file 'loaders/loadlibrary.c' is in a subdirectory,
      Makefile.am:123: but option 'subdir-objects' is disabled
      Makefile.am:126: warning: source file 'loaders/shl_load.c' is in a subdirectory,
      Makefile.am:126: but option 'subdir-objects' is disabled
      autoreconf: Leaving directory `libltdl'
      autoreconf: Entering directory `tests/cdemo'
      autoreconf: configure.ac: not using Gettext
      autoreconf: running: /home/jie/allwinner/tina-d1-open/out/host/bin/aclocal --force -I ../../libltdl/m4
      autoreconf: configure.ac: tracing
      autoreconf: running: /home/jie/allwinner/tina-d1-open/out/d1-nezha_min/compile_dir/host/libtool-2.4/libltdl/config/libtoolize --copy --force
      libtoolize: Bootstrap detected, no files installed.
      autoreconf: running: /home/jie/allwinner/tina-d1-open/out/host/bin/autoconf --force
      autoreconf: configure.ac: not using Autoheader
      autoreconf: running: /home/jie/allwinner/tina-d1-open/out/host/bin/automake --add-missing --copy --force-missing
      autoreconf: Leaving directory `tests/cdemo'
      autoreconf: Entering directory `tests/demo'
      autoreconf: configure.ac: not using Gettext
      autoreconf: running: /home/jie/allwinner/tina-d1-open/out/host/bin/aclocal --force -I ../../libltdl/m4
      autoreconf: configure.ac: tracing
      autoreconf: running: /home/jie/allwinner/tina-d1-open/out/d1-nezha_min/compile_dir/host/libtool-2.4/libltdl/config/libtoolize --copy --force
      libtoolize: Bootstrap detected, no files installed.
      autoreconf: running: /home/jie/allwinner/tina-d1-open/out/host/bin/autoconf --force
      autoreconf: configure.ac: not using Autoheader
      autoreconf: running: /home/jie/allwinner/tina-d1-open/out/host/bin/automake --add-missing --copy --force-missing
      autoreconf: Leaving directory `tests/demo'
      autoreconf: Entering directory `tests/depdemo'
      autoreconf: configure.ac: not using Gettext
      autoreconf: running: /home/jie/allwinner/tina-d1-open/out/host/bin/aclocal --force -I ../../libltdl/m4
      autoreconf: configure.ac: tracing
      autoreconf: running: /home/jie/allwinner/tina-d1-open/out/d1-nezha_min/compile_dir/host/libtool-2.4/libltdl/config/libtoolize --copy --force
      libtoolize: Bootstrap detected, no files installed.
      autoreconf: running: /home/jie/allwinner/tina-d1-open/out/host/bin/autoconf --force
      autoreconf: configure.ac: not using Autoheader
      autoreconf: running: /home/jie/allwinner/tina-d1-open/out/host/bin/automake --add-missing --copy --force-missing
      autoreconf: Leaving directory `tests/depdemo'
      autoreconf: Entering directory `tests/f77demo'
      autoreconf: configure.ac: not using Gettext
      autoreconf: running: /home/jie/allwinner/tina-d1-open/out/host/bin/aclocal --force -I ../../libltdl/m4
      autoreconf: configure.ac: tracing
      autoreconf: running: /home/jie/allwinner/tina-d1-open/out/d1-nezha_min/compile_dir/host/libtool-2.4/libltdl/config/libtoolize --copy --force
      libtoolize: Bootstrap detected, no files installed.
      autoreconf: running: /home/jie/allwinner/tina-d1-open/out/host/bin/autoconf --force
      autoreconf: running: /home/jie/allwinner/tina-d1-open/out/host/bin/autoheader --force
      autoreconf: running: /home/jie/allwinner/tina-d1-open/out/host/bin/automake --add-missing --copy --force-missing
      autoreconf: Leaving directory `tests/f77demo'
      autoreconf: Entering directory `tests/fcdemo'
      autoreconf: configure.ac: not using Gettext
      autoreconf: running: /home/jie/allwinner/tina-d1-open/out/host/bin/aclocal --force -I ../../libltdl/m4
      autoreconf: configure.ac: tracing
      autoreconf: running: /home/jie/allwinner/tina-d1-open/out/d1-nezha_min/compile_dir/host/libtool-2.4/libltdl/config/libtoolize --copy --force
      libtoolize: Bootstrap detected, no files installed.
      autoreconf: running: /home/jie/allwinner/tina-d1-open/out/host/bin/autoconf --force
      autoreconf: running: /home/jie/allwinner/tina-d1-open/out/host/bin/autoheader --force
      autoreconf: running: /home/jie/allwinner/tina-d1-open/out/host/bin/automake --add-missing --copy --force-missing
      autoreconf: Leaving directory `tests/fcdemo'
      autoreconf: Entering directory `tests/mdemo'
      autoreconf: configure.ac: not using Gettext
      autoreconf: running: /home/jie/allwinner/tina-d1-open/out/host/bin/aclocal --force -I ../../libltdl/m4
      autoreconf: configure.ac: tracing
      autoreconf: running: /home/jie/allwinner/tina-d1-open/out/d1-nezha_min/compile_dir/host/libtool-2.4/libltdl/config/libtoolize --copy --force
      libtoolize: Bootstrap detected, no files installed.
      autoreconf: running: /home/jie/allwinner/tina-d1-open/out/host/bin/autoconf --force
      autoreconf: configure.ac: not using Autoheader
      autoreconf: running: /home/jie/allwinner/tina-d1-open/out/host/bin/automake --add-missing --copy --force-missing
      autoreconf: Leaving directory `tests/mdemo'
      autoreconf: Entering directory `tests/mdemo2'
      autoreconf: configure.ac: not using Gettext
      autoreconf: running: /home/jie/allwinner/tina-d1-open/out/host/bin/aclocal --force -I ../../libltdl/m4
      autoreconf: configure.ac: tracing
      autoreconf: running: /home/jie/allwinner/tina-d1-open/out/d1-nezha_min/compile_dir/host/libtool-2.4/libltdl/config/libtoolize --copy --force
      libtoolize: Bootstrap detected, no files installed.
      autoreconf: running: /home/jie/allwinner/tina-d1-open/out/host/bin/autoconf --force
      autoreconf: configure.ac: not using Autoheader
      autoreconf: running: /home/jie/allwinner/tina-d1-open/out/host/bin/automake --add-missing --copy --force-missing
      autoreconf: Leaving directory `tests/mdemo2'
      autoreconf: Entering directory `tests/pdemo'
      autoreconf: configure.ac: not using Gettext
      autoreconf: running: /home/jie/allwinner/tina-d1-open/out/host/bin/aclocal --force -I ../../libltdl/m4
      autoreconf: configure.ac: tracing
      autoreconf: running: /home/jie/allwinner/tina-d1-open/out/d1-nezha_min/compile_dir/host/libtool-2.4/libltdl/config/libtoolize --copy --force
      libtoolize: Bootstrap detected, no files installed.
      autoreconf: running: /home/jie/allwinner/tina-d1-open/out/host/bin/autoconf --force
      autoreconf: configure.ac: not using Autoheader
      autoreconf: running: /home/jie/allwinner/tina-d1-open/out/host/bin/automake --add-missing --copy --force-missing
      autoreconf: Leaving directory `tests/pdemo'
      autoreconf: Entering directory `tests/tagdemo'
      autoreconf: configure.ac: not using Gettext
      autoreconf: running: /home/jie/allwinner/tina-d1-open/out/host/bin/aclocal --force -I ../../libltdl/m4
      autoreconf: configure.ac: tracing
      autoreconf: running: /home/jie/allwinner/tina-d1-open/out/d1-nezha_min/compile_dir/host/libtool-2.4/libltdl/config/libtoolize --copy --force
      libtoolize: Bootstrap detected, no files installed.
      autoreconf: running: /home/jie/allwinner/tina-d1-open/out/host/bin/autoconf --force
      autoreconf: configure.ac: not using Autoheader
      autoreconf: running: /home/jie/allwinner/tina-d1-open/out/host/bin/automake --add-missing --copy --force-missing
      autoreconf: Leaving directory `tests/tagdemo'
      touch /home/jie/allwinner/tina-d1-open/out/d1-nezha_min/compile_dir/host/libtool-2.4/.prepared7bf4eb5be4d59121ff49d9dae74bea63
      (cd /home/jie/allwinner/tina-d1-open/out/d1-nezha_min/compile_dir/host/libtool-2.4/; if [ -x configure ]; then cp -fpR /home/jie/allwinner/tina-d1-open/scripts/config.{guess,sub} /home/jie/allwinner/tina-d1-open/out/d1-nezha_min/compile_dir/host/libtool-2.4// &&  bash ./configure CC="gcc" CFLAGS="-O2 -I/home/jie/allwinner/tina-d1-open/out/host/include -I/home/jie/allwinner/tina-d1-open/out/host/usr/include " CPPFLAGS="-I/home/jie/allwinner/tina-d1-open/out/host/include -I/home/jie/allwinner/tina-d1-open/out/host/usr/include " LDFLAGS="-L/home/jie/allwinner/tina-d1-open/out/host/lib -L/home/jie/allwinner/tina-d1-open/out/host/usr/lib " SHELL="/usr/bin/env bash" lt_cv_sys_dlsearch_path="" --target=x86_64-linux-gnu --host=x86_64-linux-gnu --build=x86_64-linux-gnu --program-prefix="" --program-suffix="" --prefix=/home/jie/allwinner/tina-d1-open/out/host --exec-prefix=/home/jie/allwinner/tina-d1-open/out/host --sysconfdir=/home/jie/allwinner/tina-d1-open/out/host/etc --localstatedir=/home/jie/allwinner/tina-d1-open/out/host/var --sbindir=/home/jie/allwinner/tina-d1-open/out/host/bin ; fi )
      ## ----------------------- ##
      ## Configuring libtool 2.4 ##
      ## ----------------------- ##
      
      checking for a BSD-compatible install... /usr/bin/install -c
      checking whether build environment is sane... yes
      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 build system type... x86_64-pc-linux-gnu
      checking host system type... x86_64-pc-linux-gnu
      configure: autobuild project... GNU Libtool
      configure: autobuild revision... 2.4 ()
      configure: autobuild hostname... jie-US-YYDS
      configure: autobuild mode... default
      configure: autobuild timestamp... 20210528T050916Z
      checking for x86_64-linux-gnu-gcc... 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... no
      checking for suffix of object files... o
      checking whether we are using the GNU C compiler... yes
      checking whether gcc accepts -g... yes
      checking for gcc option to accept ISO C89... none needed
      checking whether gcc understands -c and -o together... yes
      checking for style of include used by make... GNU
      checking dependency style of gcc... gcc3
      checking how to run the C preprocessor... gcc -E
      checking how to print strings... printf
      checking for a sed that does not truncate output... /home/jie/allwinner/tina-d1-open/out/host/bin/sed
      checking for grep that handles long lines and -e... /home/jie/allwinner/tina-d1-open/out/host/bin/grep
      checking for egrep... /home/jie/allwinner/tina-d1-open/out/host/bin/grep -E
      checking for fgrep... /home/jie/allwinner/tina-d1-open/out/host/bin/grep -F
      checking for ld used by gcc... /usr/bin/ld
      checking if the linker (/usr/bin/ld) is GNU ld... yes
      checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
      
      
      
      posted in MR Series
      BedRock
      BedRock
    • Reply: D1 SDK V1.01 固件在编译的过程中遇到的问题

      正在尝试编译 mini SDK 原来需要 lauch 配置一下

      posted in MR Series
      BedRock
      BedRock
    • Reply: D1 SDK V1.01 固件在编译的过程中遇到的问题

      @xiaowenge 在 D1 SDK V1.01 固件在编译的过程中遇到的问题 中说:

      事 只要肯

      min 版的固件的下载连接是什么,我在 客户服务平台上没有看到

      posted in MR Series
      BedRock
      BedRock
    • Reply: D1 SDK V1.01 固件在编译的过程中遇到的问题

      @xiaowenge min固件 我去下载看看 😀

      posted in MR Series
      BedRock
      BedRock
    • D1 SDK V1.01 固件在编译的过程中遇到的问题

      编译D1 V1.01 固件的时候遇到了这个问题 说是由多个warning引起的errors
      查看上面的 warning 提示感觉都没什么大问题, 主要还是在glib库中的问题
      bdcbac4f-dc3a-4561-8999-4ac771827322-image.png
      a8392db6-fd1d-4eaf-a76d-d28334df9d3e-image.png
      之前编译 使用多线程编译 会出现
      a12c1ee0-27e2-4cd8-a918-4dc60b82db38-image.png
      02c5fa44-7c6a-44fc-828d-abfa541de7ee-image.png

      这两个问题 那个动态库缺少不知道,下面这个问题与上面出错的文件也不一样,现在没有头绪。。。

      posted in MR Series
      BedRock
      BedRock
    • 1
    • 2
    • 3
    • 4
    • 4 / 4