如何使用mingw gcc链接msvcr90.dll?我试过-lmsvcr90,这是最小的例子:
#include <stdio.h>
int main(int argc, const char *argv[]) {
printf("%s\n", "hello");
return 0;
}
我的操作系统是win7,mingw gcc 4.5.0
$ gcc -v
...
gcc version 4.5.0 (GCC)
$ gcc hello.c -lmsvcr90
$ a
然后我收到了这个错误:
R6034
An application has made an attempt to load the C runtime library incorrectly. Please contact the application's support team for more information.
我错过了哪一部分?
EDIT1:
@ user440813似乎我的mingw与你的明显不同。
$ gcc h.c -nostdlib -lmsvcr70 -lgcc -o h.exe
d:/mingw/bin/../lib/gcc/mingw32/4.5.0/libgcc.a(__main.o):(.text+0x5a): undefined reference to `atexit'
d:/mingw/bin/../lib/gcc/mingw32/4.5.0/libgcc.a(__main.o):(.text+0xc2): undefined reference to `atexit'
collect2: ld returned 1 exit status
然后我嘲笑int atexit ( void ( * function ) (void) ) {return 0;}
并再次 R6034 ......
答案 0 :(得分:4)
尝试
gcc hello.c -nostdlib -lmsvcr90 -lgcc -o hello.exe
代替。我对你的原始编译尝试成功感到有点惊讶,因为msvcr90
和msvcrt
之间的定义应该存在冲突(默认情况下MinGW链接)。这样,msvr90
被链接,冲突的msvcrt
没有,但libgcc
被添加以初始化运行时库。
我的计算机上没有msvcr90.dll
,但我能够验证类似的调用是否适用于msvcr100.dll
。