gpt4 book ai didi

c++ - 树莓派工具链上的 std::shared_future

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:30:13 25 4
gpt4 key购买 nike

我正在尝试为 Raspberry Pi 交叉编译一个大型项目。我正在使用由 crosstool-ng 构建的工具链,gcc 版本 4.7.3。当看到 std::shared_future 时,编译会停止。我收到此错误:

test.cpp:5:27: error: aggregate 'std::shared_future<int> xxx' has incomplete type and cannot be defined

下面是产生该错误的源文件:

#include <future>

int main()
{
std::shared_future<int> xxx;
return 0;
}

这个相同的源文件在 Rapsberry Pi 本身上编译成功。这是 crosstool 工具链中的错误吗?有解决方法吗?我怎样才能让它成功编译?

最佳答案

要拥有 shared_future 实现类而不仅仅是前向声明,您必须使以下预处理器条件等于 true :#if defined(_GLIBCXX_HAS_GTHREADS) && defined(_GLIBCXX_USE_C99_STDINT_TR1)
&& (ATOMIC_INT_LOCK_FREE > 1)

根据您之前对@juanchopanza 的回答,似乎您的条件的以下部分等于 true :if defined(_GLIBCXX_HAS_GTHREADS) && defined(_GLIBCXX_USE_C99_STDINT_TR1) 因为必须要有thread 类的实现。

最后,我们可以说这部分条件为假 ATOMIC_INT_LOCK_FREE > 1

关于c++ - 树莓派工具链上的 std::shared_future,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16133977/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com