gpt4 book ai didi

c++ - Arch/Eclipse/C++/库放在哪里?

转载 作者:行者123 更新时间:2023-11-30 05:03:18 26 4
gpt4 key购买 nike

我正在尝试 C++,我的 Arch 机器上安装了 Eclipse。我正在尝试在 Boost.Org 处获取示例工作:

#include <iostream>
#include <boost/asio.hpp>
#include <boost/date_time/posix_time/posix_time.hpp>

int main()
{
boost::asio::io_context io;

boost::asio::deadline_timer t(io, boost::posix_time::seconds(5));
t.wait();

std::cout << "Hello, world!" << std::endl;

return 0;
}

我已经下载了库 tar 并将其解压缩到/usr/local/include,因为这在默认包含文件夹中显得最为明显,但我仍然遇到以下错误:Unresolved inclusion: <boost/asio.hpp>

有什么建议吗?

更新:只需要让 Eclipse 有时间确认正在将库移动到/usr/local/include(默认包含文件夹)。

最佳答案

你应该跑

pacman -S boost

这将在 GCC 始终使用的系统包含路径中安装 boost。

关于c++ - Arch/Eclipse/C++/库放在哪里?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49470488/

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