无法在Visual C++中禁用警告



我需要禁用项目目录中的所有警告,该目录使用外部库ProtocolBuffers,该库会产生自己的警告。

以下是我收到的151条警告中的一些:

my.pb.cc: warning C4512: 'google::protobuf::FatalException' : assignment operator could not be generated
my.pb.cc: warning C4244: 'initializing' : conversion from '__int64' to 'int', possible loss of data
my.pb.cc: warning C4125: decimal digit terminates octal escape sequence
my.pb.cc: warning C4127: conditional expression is constant
my.pb.cc
xutility(2132): warning C4996: 'std::_Copy_impl': Function call with parameters that may be unsafe - this call relies on the caller to check that the passed values are correct. To disable this warning, use -D_SCL_SECURE_NO_WARNINGS.

其中xutility是Visual Studio包含文件。

如果我在CMakeLists.txt文件中添加这些行:

# Use a lower warning level threshold for autogenerated files
set(PROTOBUF_FILES_PATH "${CMAKE_CURRENT_BINARY_DIR}/src/*.pb.*")
file(GLOB PROTOBUF_FILES ${PROTOBUF_FILES_PATH})
set_source_files_properties(${PROTOBUF_FILES} PROPERTIES COMPILE_FLAGS /W2)

我禁用了生成的pb.cc文件中的所有警告,但ProtoBuf的内部代码中仍有15个警告,类型为:

my.pb.cc
xutility(2132): warning C4996: 'std::_Copy_impl': Function call with parameters that may be unsafe - this call relies on the caller to check that the passed values are correct. To disable this warning, use -D_SCL_SECURE_NO_WARNINGS.

考虑到我无法修改ProtoBuf本身,我如何禁用这些最后的警告,可能会调整我的CMakeLists.txt文件并添加-D_SCL_SECURE_NO_WARNINGS选项,仅适用于扩展名为*.pb.*的文件?

在不了解xutility或Protobuf如何使用它的情况下,我建议尝试扩展您的set_source_files_properties()调用以包括COMPILE_DEFINITIONS:

set_source_files_properties(${PROTOBUF_FILES} PROPERTIES 
COMPILE_DEFINITIONS _SCL_SECURE_NO_WARNINGS 
COMPILE_FLAGS /W2
)

相关内容

  • 没有找到相关文章

最新更新