踩坑日记(2)
作者:互联网
踩坑日记
glog 和 gflags
发现一个项目链接glog
库后报错:
undefined reference to ‘gflags::FlagRegisterer::FlagRegisterer(char const, char const, char const, bool, bool*)’
考虑到gflags
前后版本用的namespace 不一致,于是重新安装了一个版本的gflags
并才重新编译了glog
,确保GFLAGS_NAMESPACE
正确
但错误没有消失,于是手动在CMakeLists.txt
加入了gflags
的库进行链接, 编译成功
neovim 和 terminator发生乱码
尝试设置terminator终端字体,但依旧乱码
google之, 中文的内容没有帮助,查了一下乱码一个单词(garbled
),再次搜索在github issue
找到了答案.
解决办法就是在init.vim
加入:
set guicursor=
github 翻墙
原本打算通过proxychains
来实现任意程序的翻墙,但未知原因发现用proxychains
来git clone
报错:
fatal: unable to access '': Unable to receive initial SOCKS5 response.
目前还没解决这个问题,一个暂时行办法是给git
配置了代理:
git config --global http.proxy socks5://127.0.0.1:1080
git config --global https.proxy socks5://127.0.0.1:1080
标签:char,gflags,git,const,glog,乱码,日记 来源: https://www.cnblogs.com/fridayfang/p/14359125.html