Giter VIP home page Giter VIP logo

Comments (5)

radioegor146 avatar radioegor146 commented on September 5, 2024 2

В свободное время (+- выходные) сделаю проект под MSVS

from jar-to-dll.

radioegor146 avatar radioegor146 commented on September 5, 2024

Попробуйте скомпилировать командой
g++ -Xlinker --verbose -shared -Wl,--dll main.o -o ti-pidor.dll -s -m64 -static -static-libgcc -static-libstdc++ -luser32
и приложить сюда вывод.
А так же указать откуда вы скачали и установили mingw-w64

from jar-to-dll.

GiaNTizmO avatar GiaNTizmO commented on September 5, 2024

C:\Users\Gamania\Downloads\jar-to-dll-master\dll-src>g++ -Xlinker --verbose -shared -Wl,--dll main.o -o ti-pidor.dll -s -m64 -static -static-libgcc -static-libstdc++ -luser32
GNU ld (GNU Binutils) 2.24
Supported emulations:
i386pep
i386pe
using internal linker script:

/* Default linker script, for normal executables /
OUTPUT_FORMAT(pei-x86-64)
SEARCH_DIR("=/usr/local/lib"); SEARCH_DIR("=/lib"); SEARCH_DIR("=/usr/lib");
SECTIONS
{
/
Make the virtual address and file offset synced if the alignment is
lower than the target page size. */
. = SIZEOF_HEADERS;
. = ALIGN(section_alignment);
.text image_base + ( section_alignment < 0x1000 ? . : section_alignment ) :
{
*(.init)
*(.text)
(SORT(.text$))
(.text.)
(.gnu.linkonce.t.)
*(.glue_7t)
(.glue_7)
. = ALIGN(8);
_CTOR_LIST = .; CTOR_LIST = . ;
LONG (-1); LONG (-1);
(.ctors); *(.ctor); (SORT(.ctors.)); LONG (0); LONG (0);
_DTOR_LIST = .; DTOR_LIST = . ;
LONG (-1); LONG (-1); *(.dtors); *(.dtor); (SORT(.dtors.)); LONG (0); LONG (0);
(.fini)
/
??? Why is .gcc_exc here? */
(.gcc_exc)
PROVIDE (etext = .);
(.gcc_except_table)
}
/
The Cygwin32 library uses a section to avoid copying certain data
on fork. This used to be named ".data". The linker used
to include this between data_start and data_end, but that
breaks building the cygwin32 dll. Instead, we name the section
".data_cygwin_nocopy" and explicitly include it after data_end. /
.data BLOCK(section_alignment) :
{
data_start = . ;
(.data)
(.data2)
(SORT(.data$))
(.jcr)
data_end = . ;
(.data_cygwin_nocopy)
}
.rdata BLOCK(section_alignment) :
{
(.rdata)
(SORT(.rdata$))
__rt_psrelocs_start = .;
(.rdata_runtime_pseudo_reloc)
__rt_psrelocs_end = .;
}
__rt_psrelocs_size = __rt_psrelocs_end - __rt_psrelocs_start;
_RUNTIME_PSEUDO_RELOC_LIST_END = .;
RUNTIME_PSEUDO_RELOC_LIST_END = .;
_RUNTIME_PSEUDO_RELOC_LIST = . - __rt_psrelocs_size;
RUNTIME_PSEUDO_RELOC_LIST = . - _rt_psrelocs_size;
.eh_frame BLOCK(section_alignment) :
{
(.eh_frame)
}
.pdata BLOCK(section_alignment) :
{
(.pdata)
}
.xdata BLOCK(section_alignment) :
{
(.xdata)
}
.bss BLOCK(section_alignment) :
{
bss_start = . ;
*(.bss)
*(COMMON)
bss_end = . ;
}
.edata BLOCK(section_alignment) :
{
*(.edata)
}
/DISCARD/ :
{
*(.debug$S)
*(.debug$T)
*(.debug$F)
*(.drectve)
*(.note.GNU-stack)
*(.gnu.lto
)
}
.idata BLOCK(section_alignment) :
{
/
This cannot currently be handled with grouped sections.
See pep.em:sort_sections. /
SORT(
)(.idata$2)
SORT(
)(.idata$3)
/
These zeroes mark the end of the import list. /
LONG (0); LONG (0); LONG (0); LONG (0); LONG (0);
SORT(
)(.idata$4)
IAT_start = .;
SORT(
)(.idata$5)
IAT_end = .;
SORT(
)(.idata$6)
SORT(
)(.idata$7)
}
.CRT BLOCK(section_alignment) :
{
_crt_xc_start = . ;
(SORT(.CRT$XC)) /
C initialization /
_crt_xc_end = . ;
_crt_xi_start = . ;
(SORT(.CRT$XI)) /
C++ initialization /
_crt_xi_end = . ;
_crt_xl_start = . ;
(SORT(.CRT$XL)) /
TLS callbacks /
/
_crt_xl_end is defined in the TLS Directory support code /
_crt_xp_start = . ;
(SORT(.CRT$XP)) /
Pre-termination /
_crt_xp_end = . ;
_crt_xt_start = . ;
(SORT(.CRT$XT)) /
Termination /
_crt_xt_end = . ;
}
/
Windows TLS expects .tls$AAA to be at the start and .tls$ZZZ to be
at the end of the .tls section. This is important because _tls_start MUST
be at the beginning of the section to enable SECREL32 relocations with TLS
data. */
.tls BLOCK(section_alignment) :
{
_tls_start = . ;
*(.tls$AAA)
*(.tls)
*(.tls$)
(SORT(.tls$))
(.tls$ZZZ)
_tls_end = . ;
}
.endjunk BLOCK(section_alignment) :
{
/
end is deprecated, don't use it */
PROVIDE (end = .);
PROVIDE ( _end = .);
end = .;
}
.rsrc BLOCK(section_alignment) :
{
*(.rsrc)
(SORT(.rsrc$))
}
.reloc BLOCK(section_alignment) :
{
*(.reloc)
}
.stab BLOCK(section_alignment) (NOLOAD) :
{
*(.stab)
}
.stabstr BLOCK(section_alignment) (NOLOAD) :
{
(.stabstr)
}
/
DWARF debug sections.
Symbols in the DWARF debugging sections are relative to the beginning
of the section. Unlike other targets that fake this by putting the
section VMA at 0, the PE format will not allow it. /
/
DWARF 1.1 and DWARF 2. */
.debug_aranges BLOCK(section_alignment) (NOLOAD) :
{
*(.debug_aranges)
}
.zdebug_aranges BLOCK(section_alignment) (NOLOAD) :
{
*(.zdebug_aranges)
}
.debug_pubnames BLOCK(section_alignment) (NOLOAD) :
{
*(.debug_pubnames)
}
.zdebug_pubnames BLOCK(section_alignment) (NOLOAD) :
{
*(.zdebug_pubnames)
}
.debug_pubtypes BLOCK(section_alignment) (NOLOAD) :
{
*(.debug_pubtypes)
}
.zdebug_pubtypes BLOCK(section_alignment) (NOLOAD) :
{
(.zdebug_pubtypes)
}
/
DWARF 2. */
.debug_info BLOCK(section_alignment) (NOLOAD) :
{
(.debug_info .gnu.linkonce.wi.)
}
.zdebug_info BLOCK(section_alignment) (NOLOAD) :
{
(.zdebug_info .zdebug.gnu.linkonce.wi.)
}
.debug_abbrev BLOCK(section_alignment) (NOLOAD) :
{
*(.debug_abbrev)
}
.zdebug_abbrev BLOCK(section_alignment) (NOLOAD) :
{
*(.zdebug_abbrev)
}
.debug_line BLOCK(section_alignment) (NOLOAD) :
{
*(.debug_line)
}
.zdebug_line BLOCK(section_alignment) (NOLOAD) :
{
*(.zdebug_line)
}
.debug_frame BLOCK(section_alignment) (NOLOAD) :
{
*(.debug_frame)
}
.zdebug_frame BLOCK(section_alignment) (NOLOAD) :
{
*(.zdebug_frame)
}
.debug_str BLOCK(section_alignment) (NOLOAD) :
{
*(.debug_str)
}
.zdebug_str BLOCK(section_alignment) (NOLOAD) :
{
*(.zdebug_str)
}
.debug_loc BLOCK(section_alignment) (NOLOAD) :
{
*(.debug_loc)
}
.zdebug_loc BLOCK(section_alignment) (NOLOAD) :
{
*(.zdebug_loc)
}
.debug_macinfo BLOCK(section_alignment) (NOLOAD) :
{
*(.debug_macinfo)
}
.zdebug_macinfo BLOCK(section_alignment) (NOLOAD) :
{
(.zdebug_macinfo)
}
/
SGI/MIPS DWARF 2 extensions. */
.debug_weaknames BLOCK(section_alignment) (NOLOAD) :
{
*(.debug_weaknames)
}
.zdebug_weaknames BLOCK(section_alignment) (NOLOAD) :
{
*(.zdebug_weaknames)
}
.debug_funcnames BLOCK(section_alignment) (NOLOAD) :
{
*(.debug_funcnames)
}
.zdebug_funcnames BLOCK(section_alignment) (NOLOAD) :
{
*(.zdebug_funcnames)
}
.debug_typenames BLOCK(section_alignment) (NOLOAD) :
{
*(.debug_typenames)
}
.zdebug_typenames BLOCK(section_alignment) (NOLOAD) :
{
*(.zdebug_typenames)
}
.debug_varnames BLOCK(section_alignment) (NOLOAD) :
{
*(.debug_varnames)
}
.zdebug_varnames BLOCK(section_alignment) (NOLOAD) :
{
*(.zdebug_varnames)
}
.debug_macro BLOCK(section_alignment) (NOLOAD) :
{
*(.debug_macro)
}
.zdebug_macro BLOCK(section_alignment) (NOLOAD) :
{
(.zdebug_macro)
}
/
DWARF 3. */
.debug_ranges BLOCK(section_alignment) (NOLOAD) :
{
*(.debug_ranges)
}
.zdebug_ranges BLOCK(section_alignment) (NOLOAD) :
{
(.zdebug_ranges)
}
/
DWARF 4. */
.debug_types BLOCK(section_alignment) (NOLOAD) :
{
(.debug_types .gnu.linkonce.wt.)
}
.zdebug_types BLOCK(section_alignment) (NOLOAD) :
{
(.zdebug_types .zdebug.gnu.linkonce.wt.)
}
}

==================================================
attempt to open c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib/dllcrt2.o succeeded
c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib/dllcrt2.o
attempt to open c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib/crtbegin.o succeeded
c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib/crtbegin.o
attempt to open main.o succeeded
main.o
attempt to open c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3\libuser32.a failed
attempt to open c:/mingw/bin/../lib64/gcc\libuser32.a failed
attempt to open c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libuser32.a succeeded
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libuser32.a)diudbs00489.o
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libuser32.a)diudbh.o
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libuser32.a)diudbt.o
attempt to open c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3\libstdc++.a failed
attempt to open c:/mingw/bin/../lib64/gcc\libstdc++.a failed
attempt to open c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libstdc++.a failed
attempt to open c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib\libstdc++.a failed
attempt to open C:/mingw64/lib64\libstdc++.a failed
attempt to open /opt/windows_64/usr/local/lib\libstdc++.a failed
attempt to open /opt/windows_64/lib\libstdc++.a failed
attempt to open /opt/windows_64/usr/lib\libstdc++.a failed
attempt to open c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3\stdc++.lib failed
attempt to open c:/mingw/bin/../lib64/gcc\stdc++.lib failed
attempt to open c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\stdc++.lib failed
attempt to open c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib\stdc++.lib failed
attempt to open C:/mingw64/lib64\stdc++.lib failed
attempt to open /opt/windows_64/usr/local/lib\stdc++.lib failed
attempt to open /opt/windows_64/lib\stdc++.lib failed
attempt to open /opt/windows_64/usr/lib\stdc++.lib failed
attempt to open c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3\libmingw32.a failed
attempt to open c:/mingw/bin/../lib64/gcc\libmingw32.a failed
attempt to open c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libmingw32.a succeeded
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libmingw32.a)lib64_libmingw32_a-atonexit.o
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libmingw32.a)lib64_libmingw32_a-natstart.o
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libmingw32.a)lib64_libmingw32_a-tlssup.o
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libmingw32.a)lib64_libmingw32_a-cinitexe.o
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libmingw32.a)lib64_libmingw32_a-mingw_helpers.o
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libmingw32.a)lib64_libmingw32_a-pseudo-reloc.o
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libmingw32.a)lib64_libmingw32_a-gccmain.o
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libmingw32.a)lib64_libmingw32_a-gs_support.o
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libmingw32.a)lib64_libmingw32_a-crt_handler.o
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libmingw32.a)lib64_libmingw32_a-tlsmcrt.o
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libmingw32.a)lib64_libmingw32_a-tlsthrd.o
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libmingw32.a)lib64_libmingw32_a-pseudo-reloc-list.o
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libmingw32.a)lib64_libmingw32_a-pesect.o
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libmingw32.a)lib64_libmingw32_a-CRT_fp10.o
attempt to open c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3\libgcc.a succeeded
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3\libgcc.a)_chkstk_ms.o
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3\libgcc.a)_ctors.o
attempt to open c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3\libgcc_eh.a succeeded
attempt to open c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3\libmoldname.a failed
attempt to open c:/mingw/bin/../lib64/gcc\libmoldname.a failed
attempt to open c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libmoldname.a succeeded
attempt to open c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3\libmingwex.a failed
attempt to open c:/mingw/bin/../lib64/gcc\libmingwex.a failed
attempt to open c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libmingwex.a succeeded
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libmingwex.a)lib64_libmingwex_a-dllentry.o
attempt to open c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3\libmsvcrt.a failed
attempt to open c:/mingw/bin/../lib64/gcc\libmsvcrt.a failed
attempt to open c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libmsvcrt.a succeeded
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libmsvcrt.a)dicjbs00999.o
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libmsvcrt.a)dicjbs00120.o
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libmsvcrt.a)dicjbs00942.o
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libmsvcrt.a)dicjbs00283.o
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libmsvcrt.a)dicjbs01039.o
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libmsvcrt.a)dicjbs00549.o
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libmsvcrt.a)dicjbs00384.o
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libmsvcrt.a)dicjbs00078.o
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libmsvcrt.a)dicjbs00710.o
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libmsvcrt.a)dicjbs00083.o
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libmsvcrt.a)dicjbs00953.o
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libmsvcrt.a)dicjbs01089.o
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libmsvcrt.a)dicjbs00894.o
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libmsvcrt.a)dicjbs01007.o
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libmsvcrt.a)dicjbs01036.o
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libmsvcrt.a)dicjbs00907.o
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libmsvcrt.a)dicjbs01055.o
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libmsvcrt.a)dicjbs01058.o
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libmsvcrt.a)dicjbh.o
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libmsvcrt.a)dicjbt.o
attempt to open c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3\libpthread.a failed
attempt to open c:/mingw/bin/../lib64/gcc\libpthread.a failed
attempt to open c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libpthread.a succeeded
attempt to open c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3\libadvapi32.a failed
attempt to open c:/mingw/bin/../lib64/gcc\libadvapi32.a failed
attempt to open c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libadvapi32.a succeeded
attempt to open c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3\libshell32.a failed
attempt to open c:/mingw/bin/../lib64/gcc\libshell32.a failed
attempt to open c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libshell32.a succeeded
attempt to open c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3\libuser32.a failed
attempt to open c:/mingw/bin/../lib64/gcc\libuser32.a failed
attempt to open c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libuser32.a succeeded
attempt to open c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3\libkernel32.a failed
attempt to open c:/mingw/bin/../lib64/gcc\libkernel32.a failed
attempt to open c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libkernel32.a succeeded
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libkernel32.a)dxcjbs01196.o
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libkernel32.a)dxcjbs00548.o
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libkernel32.a)dxcjbs00598.o
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libkernel32.a)dxcjbs00294.o
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libkernel32.a)dxcjbs00546.o
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libkernel32.a)dxcjbs00662.o
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libkernel32.a)dxcjbs00528.o
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libkernel32.a)dxcjbs00660.o
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libkernel32.a)dxcjbs00116.o
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libkernel32.a)dxcjbs00846.o
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libkernel32.a)dxcjbs00461.o
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libkernel32.a)dxcjbs01261.o
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libkernel32.a)dxcjbs00366.o
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libkernel32.a)dxcjbs00218.o
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libkernel32.a)dxcjbs00186.o
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libkernel32.a)dxcjbs01262.o
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libkernel32.a)dxcjbs01260.o
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libkernel32.a)dxcjbs00650.o
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libkernel32.a)dxcjbs00462.o
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libkernel32.a)dxcjbs00466.o
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libkernel32.a)dxcjbs00677.o
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libkernel32.a)dxcjbs00955.o
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libkernel32.a)dxcjbs01026.o
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libkernel32.a)dxcjbs01033.o
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libkernel32.a)dxcjbs01040.o
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libkernel32.a)dxcjbs01183.o
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libkernel32.a)dxcjbs01230.o
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libkernel32.a)dxcjbs01210.o
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libkernel32.a)dxcjbs01025.o
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libkernel32.a)dxcjbs00248.o
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libkernel32.a)dxcjbs01217.o
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libkernel32.a)dxcjbs00843.o
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libkernel32.a)dxcjbs00216.o
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libkernel32.a)dxcjbs00761.o
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libkernel32.a)dxcjbh.o
(c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libkernel32.a)dxcjbt.o
attempt to open c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3\libmingw32.a failed
attempt to open c:/mingw/bin/../lib64/gcc\libmingw32.a failed
attempt to open c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libmingw32.a succeeded
attempt to open c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3\libgcc.a succeeded
attempt to open c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3\libgcc_eh.a succeeded
attempt to open c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3\libmoldname.a failed
attempt to open c:/mingw/bin/../lib64/gcc\libmoldname.a failed
attempt to open c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libmoldname.a succeeded
attempt to open c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3\libmingwex.a failed
attempt to open c:/mingw/bin/../lib64/gcc\libmingwex.a failed
attempt to open c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libmingwex.a succeeded
attempt to open c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3\libmsvcrt.a failed
attempt to open c:/mingw/bin/../lib64/gcc\libmsvcrt.a failed
attempt to open c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib\libmsvcrt.a succeeded
attempt to open c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib/crtend.o succeeded
c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/lib/../lib/crtend.o
c:/mingw/bin/../lib64/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/bin/ld.exe: cannot find -lstdc++
collect2.exe: error: ld returned 1 exit status

from jar-to-dll.

GiaNTizmO avatar GiaNTizmO commented on September 5, 2024

А вообще есть вариант собрать под MS VS?

from jar-to-dll.

radioegor146 avatar radioegor146 commented on September 5, 2024

N/C

from jar-to-dll.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.