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

c++编译protobuf时提示LNK2001 无法解析的外部符号

程序员文章站 2022-06-16 10:05:46
在所在配置完成后编译protobuf时还是提示如下LNK2001无法解析的外部符号 "union google::protobuf::internal::EmptyString google::protobuf::internal::fixed_address_empty_string" (?fixed_address_empty_string@internal@protobuf@google@@3TEmptyString@123@A)真坑啊,各种操作猛如虎后结果还是不行。vs2017里设置如下...

在所在配置完成后编译protobuf时还是提示如下

LNK2001	无法解析的外部符号 "union google::protobuf::internal::EmptyString google::protobuf::internal::fixed_address_empty_string" (?fixed_address_empty_string@internal@protobuf@google@@3TEmptyString@123@A)

真坑啊,各种操作猛如虎后结果还是不行。

vs2017里设置如下

然后查要在引用的头文件里增加 #define PROTOBUF_USE_DLLS,但是编译时会报protobuf.lib的重定义错误,于是把PROTOBUF_USE_DLLS定义放到工程的预处理器定义里就好了。这是vs2017里的做法。

Qt编辑器设置如下

在Makefile文件中定义预编译宏定义 PROTOBUF_USE_DLLS 方法如下:

CFLAGS:= -DPROTOBUF_USE_DLLS

而在qt的 .pro文件中添加方法如下:

DEFINES +=PROTOBUF_USE_DLLS

本文地址:https://blog.csdn.net/alvinlyb/article/details/110952210

相关标签: c++