码迷,mamicode.com
首页 > 其他好文 > 详细

vs2017.unresolved external symbol __imp__fprintf&__imp____iob_func

时间:2020-07-26 22:54:18      阅读:94      评论:0      收藏:0      [点我收藏+]

标签:mpeg   报错   href   stderr   case   elf   ini   err   ted   

1、我的处理:

extern "C" { FILE __iob_func[3] = { *stdin,*stdout,*stderr }; }
#pragma comment(lib, "legacy_stdio_definitions.lib")

 

2、

3、vs2015无法解析外部符号__imp__fprintf - ubosm - 博客园.html (https://www.cnblogs.com/ubosm/p/5444919.html

 网页内容保存:

 

使用vs2015编译ffmpeg的一个小项时,出现了__imp__fprintf和__imp____iob_func 的错误,google了一下,有的人 建议下载SDL源码重新编译一下,当然这个方案非常不科学。所以又继续搜,终于有所发现。

这是老外的原话:

In visual studio 2015, stdin, stderr, stdout are defined as follow :

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

But previously, they were defined as:

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

So now __iob_func is not defined anymore which leads to a link error when using a .lib file compiled with previous versions of visual studio.

To solve the issue, you can try defining __iob_func() yourself which should return an array containing {*stdin,*stdout,*stderr}.

Regarding the other link errors about stdio functions (in my case it was sprintf()), you can add legacy_stdio_definitions.lib to your linker options.

答题意思就是stdin, stderr, stdout 这几个函数vs2015和以前的定义得不一样,所以报错。

解决方法呢,就是使用{*stdin,*stdout,*stderr}数组自己定义__iob_func()

其实就是下边这样。

extern "C" { FILE __iob_func[3] = { *stdin,*stdout,*stderr }; }

然后__imp__fprintf的解决方法就是在链接器输入lib里加上legacy_stdio_definitions.lib这个LIB

 

4、

5、

 

vs2017.unresolved external symbol __imp__fprintf&__imp____iob_func

标签:mpeg   报错   href   stderr   case   elf   ini   err   ted   

原文地址:https://www.cnblogs.com/cppskill/p/13381944.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!