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

vs2012 error c4996: This function or variable may be unsafe

程序员文章站 2022-04-09 22:56:52
编译lua源码时,使用vs2012,遇到如下错误。 复制代码 代码如下: 1>------ 已启动生成: 项目: 20130925, 配置: debug win3...

编译lua源码时,使用vs2012,遇到如下错误。

复制代码 代码如下:

1>------ 已启动生成: 项目: 20130925, 配置: debug win32 ------
1>  stdafx.cpp
1>d:\code\20130925\20130925\stdafx.cpp(18): error c4996: 'fopen': this function or variable may be unsafe. consider using fopen_s instead. to disable deprecation, use _crt_secure_no_warnings. see online help for details.
1>          d:\vs2012\vc\include\stdio.h(218) : 参见“fopen”的声明
1>  20130925.cpp
1>  正在生成代码...
========== 生成: 成功 0 个,失败 1 个,最新 0 个,跳过 0 个 ==========

 
解决方案,项目 ->属性 -> c/c++ -> 预处理器 -> 点击预处理器定义,编辑,加入_crt_secure_no_warnings,即可。