mingw 交叉编译错误 - 未定义对“__mingw_get_msvcrt_handle”的引用

mingw cross compiling error - undefined reference to `__mingw_get_msvcrt_handle'

我可以成功地从 Linux 为一个简单的 hello world 程序的 Windows 交叉编译一个 exe。现在,我正在尝试交叉编译一个更复杂的程序。这是一个 Rust 程序,但它不是问题的原因,因为已经生成了 .o。

知道为什么我会收到 undefined reference to `__mingw_get_msvcrt_handle' 错误吗?我正在使用 rubenvb-4.7.0.

预构建的工具链

命令行为:

/inst_temp/mingw32_3/mingw64/bin/x86_64-w64-mingw32-gcc -Wl,--enable-long-section-names -fno-use-linker-plugin -Wl,--nxcompat -static-libgcc -m64 -L /mytool/var/lib/rustlib/x86_64-pc-windows-gnu/lib /rust.code/study/prj3/target/x86_64-pc-windows-gnu/debug/study_cross_rust.0.o -o /rust.code/study/prj3/target/x86_64-pc-windows-gnu/debug/study_cross_rust.exe -Wl,--gc-sections -L /rust.code/study/prj3/target/x86_64-pc-windows-gnu/debug -L /rust.code/study/prj3/target/x86_64-pc-windows-gnu/debug/deps -L /mytool/var/lib/rustlib/x86_64-pc-windows-gnu/lib -L /rust.code/study/prj3/.rust/lib/x86_64-pc-windows-gnu -L /rust.code/study/prj3/lib/x86_64-pc-windows-gnu -Wl,-Bstatic -Wl,-Bdynamic /mytool/var/lib/rustlib/x86_64-pc-windows-gnu/lib/libstd-35c36e89.rlib /mytool/var/lib/rustlib/x86_64-pc-windows-gnu/lib/libcollections-35c36e89.rlib /mytool/var/lib/rustlib/x86_64-pc-windows-gnu/lib/librustc_unicode-35c36e89.rlib /mytool/var/lib/rustlib/x86_64-pc-windows-gnu/lib/librand-35c36e89.rlib /mytool/var/lib/rustlib/x86_64-pc-windows-gnu/lib/liballoc-35c36e89.rlib /mytool/var/lib/rustlib/x86_64-pc-windows-gnu/lib/liballoc_jemalloc-35c36e89.rlib /mytool/var/lib/rustlib/x86_64-pc-windows-gnu/lib/liblibc-35c36e89.rlib /mytool/var/lib/rustlib/x86_64-pc-windows-gnu/lib/libcore-35c36e89.rlib -l ws2_32 -l userenv -l advapi32 -l compiler-rt

这些是错误消息:

/inst_temp/mingw32_3/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/4.7.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o: In function `__mingw_prepare_except_for_msvcr80_and_higher':
/home/ruben/mingw-w64/toolchain/src/mingw-w64/tags/v2.0.3/mingw-w64-crt/crt/crtexe.c:430: undefined reference to `__mingw_get_msvcrt_handle'
collect2: error: ld returned 1 exit status

在 windows 上编译时,强烈建议 使用 multirust 而不仅仅是 rust。在我看来,您正试图以某种方式将 msvc 编译的 rust 与 mingw 混合。没有更多信息,还不清楚 how/where 事情出了问题。

我找到问题了。

我指的是 for the cross compilation. To have the rustlib for x86_64, I download the package http://static.rust-lang.org/dist/rustc-1.5.0-x86_64-pc-windows-gnu.tar.gz 并将 lib 复制到 rustlib/x86_64-pc-windows-gnu 下我在 Linux.[=11= 安装的 rustc ]

但是,__mingw_get_msvcrt_handle 没有在 rustlang 的这个 rustlib 中定义。我用的是mingw gcc的交叉编译器,看来你必须使用mingw gcc提供的lib。

我的解决方案是将 mingw gcc lib 文件夹中的所有文件(*.a、*.o 等)复制到 rustlib/x86_64-pc-windows-gnu。然后就可以了。