【发布时间】:2016-08-06 16:33:39
【问题描述】:
我想使用 Ubuntu 16.04 从 github 构建 Facebook 的 Proxygen c++ http 库。这是我设置的环境以及 deps.sh 命令安装依赖项:
gcc --version
gcc (Ubuntu 5.4.0-6ubuntu1~16.04.1) 5.4.0 20160609
export CPPFLAGS="-std=c++14"
export CXXFLAGS="-std=c++14"
git clone git@github.com:facebook/proxygen.git
cd proxygen/proxygen && ./deps.sh
这让我完成了构建其愚蠢依赖的大部分工作,但我收到了一个不完整的类型错误:
libtool: compile: g++ -DHAVE_CONFIG_H -I./.. -pthread -I/usr/include -std=c++14 -std=gnu++1y -std=c++14 -MT io/async/AsyncPipe.lo -MD -MP -MF io/async/.deps/AsyncPipe.Tpo -c io/async/AsyncPipe.cpp -fPIC -DPIC -o io/async/.libs/AsyncPipe.o
In file included from /usr/include/c++/5/bits/move.h:57:0,
from /usr/include/c++/5/bits/stl_pair.h:59,
from /usr/include/c++/5/utility:70,
from /usr/include/c++/5/algorithm:60,
from ./../folly/Conv.h:26,
from Conv.cpp:16:
/usr/include/c++/5/type_traits: In instantiation of ‘struct std::make_unsigned<__int128>’:
Conv.cpp:528:52: required from ‘folly::detail::ConversionResult<T> folly::detail::digits_to(const char*, const char*) [with Tgt = __int128]’
Conv.cpp:658:16: required from here
/usr/include/c++/5/type_traits:1757:62: error: invalid use of incomplete type ‘class std::__make_unsigned_selector<__int128, false, false>’
{ typedef typename __make_unsigned_selector<_Tp>::__type type; };
^
/usr/include/c++/5/type_traits:1721:11: note: declaration of ‘class std::__make_unsigned_selector<__int128, false, false>’
class __make_unsigned_selector;
^
/usr/include/c++/5/type_traits: In instantiation of ‘struct std::make_unsigned<__int128 unsigned>’:
Conv.cpp:528:52: required from ‘folly::detail::ConversionResult<T> folly::detail::digits_to(const char*, const char*) [with Tgt = __int128 unsigned]’
Conv.cpp:661:16: required from here
有没有人尝试或解决过这个问题?我还不熟悉代码库。蒂亚。
【问题讨论】:
-
仅供参考,Ubuntu 16.04 引入的 boost 版本是 1.58.0。
-
您的编译器选项现在看起来像“-std=c++14 -std=gnu++1y -std=c++14”。如果你尝试编译这样的代码:#include
int main () { auto a = std::make_unsigned<__int128> (); } 你会失败,因为编译选项。只需删除 CPPFLAGS、CXXFLAGS。 -
谢谢@vadikrobot。我没有设置 [gnu++1y],这就是我尝试 c++14 的原因。
标签: c++ c++14 ubuntu-16.04 gcc5 proxygen