Advertisement
Guest User

Untitled

a guest
Jul 18th, 2019
260
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 25.76 KB | None | 0 0
  1. sudo /srv/mer/toolings/SailfishOS-3.0.2.8/opt/cross/bin/armv7hl-meego-linux-gnueabi-ld -L/opt/cprocsp/lib/arm -lcsp --verbose &> output.txt
  2. GNU ld (GNU Binutils) 2.25
  3.   Supported emulations:
  4.    armelf_linux_eabi
  5.    armelfb_linux_eabi
  6.    elf_i386
  7.    i386linux
  8.    elf32_x86_64
  9. using internal linker script:
  10. ==================================================
  11. /* Script for -z combreloc: combine and sort reloc sections */
  12. /* Copyright (C) 2014 Free Software Foundation, Inc.
  13.    Copying and distribution of this script, with or without modification,
  14.    are permitted in any medium without royalty provided the copyright
  15.    notice and this notice are preserved.  */
  16. OUTPUT_FORMAT("elf32-littlearm", "elf32-bigarm",
  17.           "elf32-littlearm")
  18. OUTPUT_ARCH(arm)
  19. ENTRY(_start)
  20. SEARCH_DIR("=/opt/cross/armv7hl-meego-linux-gnueabi/lib"); SEARCH_DIR("=/usr/local/lib"); SEARCH_DIR("=/lib"); SEARCH_DIR("=/usr/lib");
  21. SECTIONS
  22. {
  23.   /* Read-only sections, merged into text segment: */
  24.   PROVIDE (__executable_start = SEGMENT_START("text-segment", 0x00010000)); . = SEGMENT_START("text-segment", 0x00010000) + SIZEOF_HEADERS;
  25.   .interp         : { *(.interp) }
  26.   .note.gnu.build-id : { *(.note.gnu.build-id) }
  27.   .hash           : { *(.hash) }
  28.   .gnu.hash       : { *(.gnu.hash) }
  29.   .dynsym         : { *(.dynsym) }
  30.   .dynstr         : { *(.dynstr) }
  31.   .gnu.version    : { *(.gnu.version) }
  32.   .gnu.version_d  : { *(.gnu.version_d) }
  33.   .gnu.version_r  : { *(.gnu.version_r) }
  34.   .rel.dyn        :
  35.     {
  36.       *(.rel.init)
  37.       *(.rel.text .rel.text.* .rel.gnu.linkonce.t.*)
  38.       *(.rel.fini)
  39.       *(.rel.rodata .rel.rodata.* .rel.gnu.linkonce.r.*)
  40.       *(.rel.data.rel.ro .rel.data.rel.ro.* .rel.gnu.linkonce.d.rel.ro.*)
  41.       *(.rel.data .rel.data.* .rel.gnu.linkonce.d.*)
  42.       *(.rel.tdata .rel.tdata.* .rel.gnu.linkonce.td.*)
  43.       *(.rel.tbss .rel.tbss.* .rel.gnu.linkonce.tb.*)
  44.       *(.rel.ctors)
  45.       *(.rel.dtors)
  46.       *(.rel.got)
  47.       *(.rel.bss .rel.bss.* .rel.gnu.linkonce.b.*)
  48.       PROVIDE_HIDDEN (__rel_iplt_start = .);
  49.       *(.rel.iplt)
  50.       PROVIDE_HIDDEN (__rel_iplt_end = .);
  51.     }
  52.   .rela.dyn       :
  53.     {
  54.       *(.rela.init)
  55.       *(.rela.text .rela.text.* .rela.gnu.linkonce.t.*)
  56.       *(.rela.fini)
  57.       *(.rela.rodata .rela.rodata.* .rela.gnu.linkonce.r.*)
  58.       *(.rela.data .rela.data.* .rela.gnu.linkonce.d.*)
  59.       *(.rela.tdata .rela.tdata.* .rela.gnu.linkonce.td.*)
  60.       *(.rela.tbss .rela.tbss.* .rela.gnu.linkonce.tb.*)
  61.       *(.rela.ctors)
  62.       *(.rela.dtors)
  63.       *(.rela.got)
  64.       *(.rela.bss .rela.bss.* .rela.gnu.linkonce.b.*)
  65.       PROVIDE_HIDDEN (__rela_iplt_start = .);
  66.       *(.rela.iplt)
  67.       PROVIDE_HIDDEN (__rela_iplt_end = .);
  68.     }
  69.   .rel.plt        :
  70.     {
  71.       *(.rel.plt)
  72.     }
  73.   .rela.plt       :
  74.     {
  75.       *(.rela.plt)
  76.     }
  77.   .init           :
  78.   {
  79.     KEEP (*(SORT_NONE(.init)))
  80.   }
  81.   .plt            : { *(.plt) }
  82.   .iplt           : { *(.iplt) }
  83.   .text           :
  84.   {
  85.     *(.text.unlikely .text.*_unlikely .text.unlikely.*)
  86.     *(.text.exit .text.exit.*)
  87.     *(.text.startup .text.startup.*)
  88.     *(.text.hot .text.hot.*)
  89.     *(.text .stub .text.* .gnu.linkonce.t.*)
  90.     /* .gnu.warning sections are handled specially by elf32.em.  */
  91.     *(.gnu.warning)
  92.     *(.glue_7t) *(.glue_7) *(.vfp11_veneer) *(.v4_bx)
  93.   }
  94.   .fini           :
  95.   {
  96.     KEEP (*(SORT_NONE(.fini)))
  97.   }
  98.   PROVIDE (__etext = .);
  99.   PROVIDE (_etext = .);
  100.   PROVIDE (etext = .);
  101.   .rodata         : { *(.rodata .rodata.* .gnu.linkonce.r.*) }
  102.   .rodata1        : { *(.rodata1) }
  103.   .ARM.extab   : { *(.ARM.extab* .gnu.linkonce.armextab.*) }
  104.    PROVIDE_HIDDEN (__exidx_start = .);
  105.   .ARM.exidx   : { *(.ARM.exidx* .gnu.linkonce.armexidx.*) }
  106.    PROVIDE_HIDDEN (__exidx_end = .);
  107.   .eh_frame_hdr : { *(.eh_frame_hdr) }
  108.   .eh_frame       : ONLY_IF_RO { KEEP (*(.eh_frame)) }
  109.   .gcc_except_table   : ONLY_IF_RO { *(.gcc_except_table
  110.   .gcc_except_table.*) }
  111.   /* These sections are generated by the Sun/Oracle C++ compiler.  */
  112.   .exception_ranges   : ONLY_IF_RO { *(.exception_ranges
  113.   .exception_ranges*) }
  114.   /* Adjust the address for the data segment.  We want to adjust up to
  115.      the same address within the page on the next page up.  */
  116.   . = ALIGN (CONSTANT (MAXPAGESIZE)) - ((CONSTANT (MAXPAGESIZE) - .) & (CONSTANT (MAXPAGESIZE) - 1)); . = DATA_SEGMENT_ALIGN (CONSTANT (MAXPAGESIZE), CONSTANT (COMMONPAGESIZE));
  117.   /* Exception handling  */
  118.   .eh_frame       : ONLY_IF_RW { KEEP (*(.eh_frame)) }
  119.   .gcc_except_table   : ONLY_IF_RW { *(.gcc_except_table .gcc_except_table.*) }
  120.   .exception_ranges   : ONLY_IF_RW { *(.exception_ranges .exception_ranges*) }
  121.   /* Thread Local Storage sections  */
  122.   .tdata      : { *(.tdata .tdata.* .gnu.linkonce.td.*) }
  123.   .tbss       : { *(.tbss .tbss.* .gnu.linkonce.tb.*) *(.tcommon) }
  124.   .preinit_array     :
  125.   {
  126.     PROVIDE_HIDDEN (__preinit_array_start = .);
  127.     KEEP (*(.preinit_array))
  128.     PROVIDE_HIDDEN (__preinit_array_end = .);
  129.   }
  130.   .init_array     :
  131.   {
  132.     PROVIDE_HIDDEN (__init_array_start = .);
  133.     KEEP (*(SORT(.init_array.*)))
  134.     KEEP (*(.init_array ))
  135.     PROVIDE_HIDDEN (__init_array_end = .);
  136.   }
  137.   .fini_array     :
  138.   {
  139.     PROVIDE_HIDDEN (__fini_array_start = .);
  140.     KEEP (*(SORT(.fini_array.*)))
  141.     KEEP (*(.fini_array ))
  142.     PROVIDE_HIDDEN (__fini_array_end = .);
  143.   }
  144.   .ctors          :
  145.   {
  146.     /* gcc uses crtbegin.o to find the start of
  147.        the constructors, so we make sure it is
  148.        first.  Because this is a wildcard, it
  149.        doesn't matter if the user does not
  150.       actually link against crtbegin.o; the
  151.       linker won't look for a file to match a
  152.        wildcard.  The wildcard also means that it
  153.        doesn't matter which directory crtbegin.o
  154.       is in.  */
  155.    KEEP (*crtbegin.o(.ctors))
  156.    KEEP (*crtbegin?.o(.ctors))
  157.    /* We don't want to include the .ctor section from
  158.        the crtend.o file until after the sorted ctors.
  159.        The .ctor section from the crtend file contains the
  160.        end of ctors marker and it must be last */
  161.     KEEP (*(EXCLUDE_FILE (*crtend.o *crtend?.o ) .ctors))
  162.     KEEP (*(SORT(.ctors.*)))
  163.     KEEP (*(.ctors))
  164.   }
  165.   .dtors          :
  166.   {
  167.     KEEP (*crtbegin.o(.dtors))
  168.     KEEP (*crtbegin?.o(.dtors))
  169.     KEEP (*(EXCLUDE_FILE (*crtend.o *crtend?.o ) .dtors))
  170.     KEEP (*(SORT(.dtors.*)))
  171.     KEEP (*(.dtors))
  172.   }
  173.   .jcr            : { KEEP (*(.jcr)) }
  174.   .data.rel.ro : { *(.data.rel.ro.local* .gnu.linkonce.d.rel.ro.local.*) *(.data.rel.ro .data.rel.ro.* .gnu.linkonce.d.rel.ro.*) }
  175.   .dynamic        : { *(.dynamic) }
  176.   . = DATA_SEGMENT_RELRO_END (0, .);
  177.   .got            : { *(.got.plt) *(.igot.plt) *(.got) *(.igot) }
  178.   .data           :
  179.   {
  180.     PROVIDE (__data_start = .);
  181.     *(.data .data.* .gnu.linkonce.d.*)
  182.     SORT(CONSTRUCTORS)
  183.   }
  184.   .data1          : { *(.data1) }
  185.   _edata = .; PROVIDE (edata = .);
  186.   . = .;
  187.   __bss_start = .;
  188.   __bss_start__ = .;
  189.   .bss            :
  190.   {
  191.    *(.dynbss)
  192.    *(.bss .bss.* .gnu.linkonce.b.*)
  193.    *(COMMON)
  194.    /* Align here to ensure that the .bss section occupies space up to
  195.       _end.  Align after .bss to ensure correct alignment even if the
  196.       .bss section disappears because there are no input sections.
  197.       FIXME: Why do we need it? When there is no .bss section, we don't
  198.      pad the .data section.  */
  199.   . = ALIGN(. != 0 ? 32 / 8 : 1);
  200.  }
  201.  _bss_end__ = . ; __bss_end__ = . ;
  202.  . = ALIGN(32 / 8);
  203.  . = SEGMENT_START("ldata-segment", .);
  204.  . = ALIGN(32 / 8);
  205.  __end__ = . ;
  206.  _end = .; PROVIDE (end = .);
  207.  . = DATA_SEGMENT_END (.);
  208.  /* Stabs debugging sections.  */
  209.  .stab          0 : { *(.stab) }
  210.  .stabstr       0 : { *(.stabstr) }
  211.  .stab.excl     0 : { *(.stab.excl) }
  212.  .stab.exclstr  0 : { *(.stab.exclstr) }
  213.  .stab.index    0 : { *(.stab.index) }
  214.  .stab.indexstr 0 : { *(.stab.indexstr) }
  215.  .comment       0 : { *(.comment) }
  216.  /* DWARF debug sections.
  217.     Symbols in the DWARF debugging sections are relative to the beginning
  218.     of the section so we begin them at 0.  */
  219.  /* DWARF 1 */
  220.  .debug          0 : { *(.debug) }
  221.  .line           0 : { *(.line) }
  222.  /* GNU DWARF 1 extensions */
  223.  .debug_srcinfo  0 : { *(.debug_srcinfo) }
  224.  .debug_sfnames  0 : { *(.debug_sfnames) }
  225.  /* DWARF 1.1 and DWARF 2 */
  226.  .debug_aranges  0 : { *(.debug_aranges) }
  227.  .debug_pubnames 0 : { *(.debug_pubnames) }
  228.  /* DWARF 2 */
  229.  .debug_info     0 : { *(.debug_info .gnu.linkonce.wi.*) }
  230.  .debug_abbrev   0 : { *(.debug_abbrev) }
  231.  .debug_line     0 : { *(.debug_line .debug_line.* .debug_line_end ) }
  232.  .debug_frame    0 : { *(.debug_frame) }
  233.  .debug_str      0 : { *(.debug_str) }
  234.  .debug_loc      0 : { *(.debug_loc) }
  235.  .debug_macinfo  0 : { *(.debug_macinfo) }
  236.  /* SGI/MIPS DWARF 2 extensions */
  237.  .debug_weaknames 0 : { *(.debug_weaknames) }
  238.  .debug_funcnames 0 : { *(.debug_funcnames) }
  239.  .debug_typenames 0 : { *(.debug_typenames) }
  240.  .debug_varnames  0 : { *(.debug_varnames) }
  241.  /* DWARF 3 */
  242.  .debug_pubtypes 0 : { *(.debug_pubtypes) }
  243.  .debug_ranges   0 : { *(.debug_ranges) }
  244.  /* DWARF Extension.  */
  245.  .debug_macro    0 : { *(.debug_macro) }
  246.  .gnu.attributes 0 : { KEEP (*(.gnu.attributes)) }
  247.  .note.gnu.arm.ident 0 : { KEEP (*(.note.gnu.arm.ident)) }
  248.  /DISCARD/ : { *(.note.GNU-stack) *(.gnu_debuglink) *(.gnu.lto_*) }
  249. }
  250.  
  251.  
  252. ==================================================
  253. attempt to open /opt/cprocsp/lib/arm/libcsp.so succeeded
  254. -lcsp (/opt/cprocsp/lib/arm/libcsp.so)
  255. libcpui.so.4 needed by /opt/cprocsp/lib/arm/libcsp.so
  256. /srv/mer/toolings/SailfishOS-3.0.2.8/opt/cross/bin/armv7hl-meego-linux-gnueabi-ld: warning: libcpui.so.4, needed by /opt/cprocsp/lib/arm/libcsp.so, not found (try using -rpath or -rpath-link)
  257. librdrsup.so.4 needed by /opt/cprocsp/lib/arm/libcsp.so
  258. /srv/mer/toolings/SailfishOS-3.0.2.8/opt/cross/bin/armv7hl-meego-linux-gnueabi-ld: warning: librdrsup.so.4, needed by /opt/cprocsp/lib/arm/libcsp.so, not found (try using -rpath or -rpath-link)
  259. libcpalloc.so.0 needed by /opt/cprocsp/lib/arm/libcsp.so
  260. /srv/mer/toolings/SailfishOS-3.0.2.8/opt/cross/bin/armv7hl-meego-linux-gnueabi-ld: warning: libcpalloc.so.0, needed by /opt/cprocsp/lib/arm/libcsp.so, not found (try using -rpath or -rpath-link)
  261. libdl.so.2 needed by /opt/cprocsp/lib/arm/libcsp.so
  262. /srv/mer/toolings/SailfishOS-3.0.2.8/opt/cross/bin/armv7hl-meego-linux-gnueabi-ld: warning: libdl.so.2, needed by /opt/cprocsp/lib/arm/libcsp.so, not found (try using -rpath or -rpath-link)
  263. librt.so.1 needed by /opt/cprocsp/lib/arm/libcsp.so
  264. /srv/mer/toolings/SailfishOS-3.0.2.8/opt/cross/bin/armv7hl-meego-linux-gnueabi-ld: warning: librt.so.1, needed by /opt/cprocsp/lib/arm/libcsp.so, not found (try using -rpath or -rpath-link)
  265. libpthread.so.0 needed by /opt/cprocsp/lib/arm/libcsp.so
  266. /srv/mer/toolings/SailfishOS-3.0.2.8/opt/cross/bin/armv7hl-meego-linux-gnueabi-ld: warning: libpthread.so.0, needed by /opt/cprocsp/lib/arm/libcsp.so, not found (try using -rpath or -rpath-link)
  267. libstdc++.so.6 needed by /opt/cprocsp/lib/arm/libcsp.so
  268. /srv/mer/toolings/SailfishOS-3.0.2.8/opt/cross/bin/armv7hl-meego-linux-gnueabi-ld: warning: libstdc++.so.6, needed by /opt/cprocsp/lib/arm/libcsp.so, not found (try using -rpath or -rpath-link)
  269. libm.so.6 needed by /opt/cprocsp/lib/arm/libcsp.so
  270. /srv/mer/toolings/SailfishOS-3.0.2.8/opt/cross/bin/armv7hl-meego-linux-gnueabi-ld: warning: libm.so.6, needed by /opt/cprocsp/lib/arm/libcsp.so, not found (try using -rpath or -rpath-link)
  271. libc.so.6 needed by /opt/cprocsp/lib/arm/libcsp.so
  272. /srv/mer/toolings/SailfishOS-3.0.2.8/opt/cross/bin/armv7hl-meego-linux-gnueabi-ld: warning: libc.so.6, needed by /opt/cprocsp/lib/arm/libcsp.so, not found (try using -rpath or -rpath-link)
  273. libgcc_s.so.1 needed by /opt/cprocsp/lib/arm/libcsp.so
  274. /srv/mer/toolings/SailfishOS-3.0.2.8/opt/cross/bin/armv7hl-meego-linux-gnueabi-ld: warning: libgcc_s.so.1, needed by /opt/cprocsp/lib/arm/libcsp.so, not found (try using -rpath or -rpath-link)
  275. /srv/mer/toolings/SailfishOS-3.0.2.8/opt/cross/bin/armv7hl-meego-linux-gnueabi-ld: warning: cannot find entry symbol _start; defaulting to 00010104
  276. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `support_registry_put_long_long'
  277. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `fclose@GLIBC_2.4'
  278. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `support_time2tm'
  279. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `supsys_unregister_all'
  280. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `CPQueryPin'
  281. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `support_registry_get_string'
  282. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `support_time_set'
  283. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `raise@GLIBC_2.4'
  284. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `csp_get_paths'
  285. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `supsys_context_dup'
  286. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `snprintf@GLIBC_2.4'
  287. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `SystemTimeToFileTime'
  288. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `support_elprint_print_'
  289. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `__ctype_tolower_loc@GLIBC_2.4'
  290. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `close@GLIBC_2.4'
  291. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `memmove@GLIBC_2.4'
  292. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `GetLastError'
  293. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `supsys_default_internal_register_name'
  294. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `malloc@GLIBC_2.4'
  295. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `support_time_add'
  296. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `SetLastError'
  297. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `supsys_register_name'
  298. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `pthread_create@GLIBC_2.4'
  299. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `__register_atfork@GLIBC_2.4'
  300. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `pthread_mutex_unlock@GLIBC_2.4'
  301. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `write@GLIBC_2.4'
  302. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `pthread_cond_timedwait@GLIBC_2.4'
  303. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `supsys_find_open_ext'
  304. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `pthread_rwlock_tryrdlock@GLIBC_2.4'
  305. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `operator delete(void*)@GLIBCXX_3.4'
  306. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `__errno_location@GLIBC_2.4'
  307. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `pthread_attr_setdetachstate@GLIBC_2.4'
  308. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `strrchr@GLIBC_2.4'
  309. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `__aeabi_unwind_cpp_pr0@GCC_3.5'
  310. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `__ctype_toupper_loc@GLIBC_2.4'
  311. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `gettimeofday@GLIBC_2.4'
  312. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `CPDisplayMessage'
  313. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `CPSelectContainer'
  314. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `time@GLIBC_2.4'
  315. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `support_load_library'
  316. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `ubi_mutex_trylock'
  317. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `support_print_init'
  318. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `strtol@GLIBC_2.4'
  319. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `sigaddset@GLIBC_2.4'
  320. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `supsys_find_close'
  321. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `support_register_checksum_block'
  322. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `support_tm2time'
  323. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `mktime@GLIBC_2.4'
  324. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `supsys_connect'
  325. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `__cxa_end_cleanup@CXXABI_1.3'
  326. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `strstr@GLIBC_2.4'
  327. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `pthread_mutex_destroy@GLIBC_2.4'
  328. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `sigemptyset@GLIBC_2.4'
  329. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `setrlimit@GLIBC_2.4'
  330. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `pthread_rwlock_trywrlock@GLIBC_2.4'
  331. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `support_registry_check_access'
  332. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `sprintf@GLIBC_2.4'
  333. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `pthread_attr_setstacksize@GLIBC_2.4'
  334. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `pthread_rwlock_timedwrlock@GLIBC_2.4'
  335. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `localtime@GLIBC_2.4'
  336. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `fscanf@GLIBC_2.4'
  337. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `pthread_self@GLIBC_2.4'
  338. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `supsys_register_all'
  339. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `stpcpy@GLIBC_2.4'
  340. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `remove@GLIBC_2.4'
  341. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `support_default_internal_register_name'
  342. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `CP_realloc'
  343. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `strcasecmp@GLIBC_2.4'
  344. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `support_print_is'
  345. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `lseek@GLIBC_2.4'
  346. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `pthread_rwlock_init@GLIBC_2.4'
  347. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `pthread_cond_broadcast@GLIBC_2.4'
  348. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `support_registry_put_string'
  349. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `supsys_find_next'
  350. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `printf@GLIBC_2.4'
  351. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `dlerror@GLIBC_2.4'
  352. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `support_registry_put_hex'
  353. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `support_free_all_checksum_blocks'
  354. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `supsys_register_all_ext'
  355. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `vfprintf@GLIBC_2.4'
  356. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `strcpy@GLIBC_2.4'
  357. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `getpid@GLIBC_2.4'
  358. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `pthread_attr_setscope@GLIBC_2.4'
  359. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `CompareFileTime'
  360. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `pthread_rwlock_unlock@GLIBC_2.4'
  361. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `__aeabi_unwind_cpp_pr1@GCC_3.5'
  362. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `support_registry_get_long'
  363. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `support_registry_get_long_long'
  364. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `support_dprint_hex'
  365. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `operator new[](unsigned int)@GLIBCXX_3.4'
  366. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `support_gettimeofday'
  367. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `pthread_mutex_lock@GLIBC_2.4'
  368. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `support_dprint_print_'
  369. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `ubi_mutex_unlock'
  370. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `supsys_nickname'
  371. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `__rawmemchr@GLIBC_2.4'
  372. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `memcmp@GLIBC_2.4'
  373. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `strcat@GLIBC_2.4'
  374. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `operator new(unsigned int)@GLIBCXX_3.4'
  375. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `supsys_flags'
  376. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `__cxa_pure_virtual@CXXABI_1.3'
  377. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `support_resource_string'
  378. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `__cxa_allocate_exception@CXXABI_1.3'
  379. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `supsys_connect_current'
  380. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `support_registry_put_section'
  381. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `support_load_library_registry'
  382. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `times@GLIBC_2.4'
  383. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `support_registry_put_long'
  384. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `support_is_checksum_block_registered'
  385. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `vtable for __cxxabiv1::__si_class_type_info@CXXABI_1.3'
  386. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `pthread_sigmask@GLIBC_2.4'
  387. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `strcmp@GLIBC_2.4'
  388. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `__fxstat@GLIBC_2.4'
  389. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `supsys_disconnect'
  390. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `supsys_find_open'
  391. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `memcpy@GLIBC_2.4'
  392. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `strchr@GLIBC_2.4'
  393. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `support_time_sub'
  394. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `support_load_library_getaddr'
  395. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `supsys_context_free'
  396. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `gmtime@GLIBC_2.4'
  397. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `pthread_attr_destroy@GLIBC_2.4'
  398. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `ubi_mutex_lock'
  399. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `free@GLIBC_2.4'
  400. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `pthread_rwlock_wrlock@GLIBC_2.4'
  401. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `strlen@GLIBC_2.4'
  402. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `support_registry_get_bool'
  403. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `support_is_csm_module_registered'
  404. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `WideCharToMultiByte'
  405. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `dlopen@GLIBC_2.4'
  406. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `__isoc99_sscanf@GLIBC_2.7'
  407. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `GetSystemTime'
  408. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `vtable for __cxxabiv1::__class_type_info@CXXABI_1.3'
  409. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `strncasecmp@GLIBC_2.4'
  410. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `clock_gettime@GLIBC_2.4'
  411. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `CP_free'
  412. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `strncat@GLIBC_2.4'
  413. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `MultiByteToWideChar'
  414. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `support_register_csm_module'
  415. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `catopen@GLIBC_2.4'
  416. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `fopen@GLIBC_2.4'
  417. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `__gxx_personality_v0@CXXABI_1.3'
  418. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `pthread_rwlock_destroy@GLIBC_2.4'
  419. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `strncpy@GLIBC_2.4'
  420. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `support_verify_blocks'
  421. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `support_unload_library'
  422. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `write_random_seed'
  423. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `support_user_name'
  424. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `strtoul@GLIBC_2.4'
  425. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `support_user_id'
  426. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `memset@GLIBC_2.4'
  427. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `open@GLIBC_2.4'
  428. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `pthread_mutex_init@GLIBC_2.4'
  429. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `strncmp@GLIBC_2.4'
  430. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `CP_malloc'
  431. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `supsys_flag'
  432. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `calloc@GLIBC_2.4'
  433. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `support_registry_get_hex'
  434. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `sscanf@GLIBC_2.4'
  435. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `ubi_mutex_open'
  436. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `fgets@GLIBC_2.4'
  437. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `ubi_mutex_close'
  438. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `__aeabi_atexit@CXXABI_ARM_1.3.3'
  439. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `usleep@GLIBC_2.4'
  440. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `fprintf@GLIBC_2.4'
  441. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `support_print_done'
  442. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `__ctype_b_loc@GLIBC_2.4'
  443. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `__cxa_throw@CXXABI_1.3'
  444. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `isnewreg'
  445. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `support_unload_library_registry'
  446. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `stdout@GLIBC_2.4'
  447. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `pthread_rwlock_timedrdlock@GLIBC_2.4'
  448. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `sysinfo@GLIBC_2.4'
  449. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `__strdup@GLIBC_2.4'
  450. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `pthread_attr_init@GLIBC_2.4'
  451. /opt/cprocsp/lib/arm/libcsp.so: undefined reference to `support_registry_delete_param'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement