博客
关于我
编译facebook/folly报错libgflags invalid
阅读量:654 次
发布时间:2019-03-15

本文共 302 字,大约阅读时间需要 1 分钟。

编译错误:Libgflags支持不兼容

在编译过程中,遇到了一个关于libgflags的兼容性问题。收到以下错误信息:

undefined reference to `gflags::FlagRegisterer::FlagRegisterer`

在尝试将gflags源码进行编译时,发现与安装的libgflags-dev有不兼容的情况。经过调试,尝试卸载现有的libgflags-dev包成功解决问题。

卸载步骤:

sudo apt-get remove libgflags-dev

重新运行配置,问题解决。

建议对编译环境进行验证,确保(libgflags-dev)已正确卸载,避免再次触发相同错误。

转载地址:http://xadmz.baihongyu.com/

你可能感兴趣的文章
PyTorch-Tutorials【pytorch官方教程中英文详解】- 6 Autograd
查看>>
properties出现中文乱码解决方法(万能)
查看>>
Property 'submit' of object #<HTMLFormElement> is not a function
查看>>
property--staticmethod--classmethod
查看>>
propertyGrid
查看>>
propertyPlaceholderConfigurer读取配置文件
查看>>
PyTorch-Tutorials【pytorch官方教程中英文详解】- 5 Build Model
查看>>
proteus三输入与非门名字_proteus 元件名称对照表
查看>>
Protobuf - 语法、字段使用规则、注意事项
查看>>
protobuf —— 快速上手
查看>>
protobuf —— 认识和安装
查看>>
Protobuf 三个关键字required、optional、repeated的理解
查看>>
ProtoBuf 原理详解
查看>>
Protobuf 实例(java)
查看>>
ProtoBuf 实际应用(java)
查看>>