欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

无法解析的外部符号__imp__fprintf和 __imp____iob_func,SDL2

程序员文章站 2022-06-09 16:07:46
...

1>SDL2main.lib(SDL_windows_main.obj) : error LNK2019: 无法解析的外部符号 __imp__fprintf,该符号在函数 _ShowError 中被引用
1>SDL2main.lib(SDL_windows_main.obj) : error LNK2019: 无法解析的外部符号 __imp____iob_func,该符号在函数 _ShowError 中被引用
1>G:\ffmpeg\simplest_ffmpeg_player-master\Debug\simplest_ffmpeg_player2_su.exe : fatal error LNK1120: 2 个无法解析的外部命令

 

在 Visual Studio 2015中,标准stdin,stderr,stdout定义如下:

#define stdin (__acrt_iob_func(0))
#define stdout (__acrt_iob_func(1))
#define stderr (__acrt_iob_func(2))

但在以前,它们被定义为:

#define stdin (&__iob_func()[0])
#define stdout (&__iob_func()[1])
#define stderr (&__iob_func()[2])

因为在这__iob_func不再定义了,这会导致使用以前版本的Visual Studio 版本编译的. lib 文件的链接错误。

为了解决这个问题,你可以尝试定义__iob_func(),它应该返回一个包含 {*stdin,*stdout,*stderr}的array 。

关于stdio函数( 在我看来是 sprintf() )的其他链接错误,可以将legacy_stdio_definitions.lib 添加到链接器选项。

FILE _iob[] = {*stdin, *stdout, *stderr};
extern"C" FILE * __cdecl __iob_func(void)
{
 return _iob;
}

另外一个解决方案就是,用vs2015重新编译SDL2,使用其生成的静态库