gpt4 book ai didi

c++ - 如何在 C++ 中使用外部库?

转载 作者:太空狗 更新时间:2023-10-29 21:26:50 26 4
gpt4 key购买 nike

我刚开始学习 C++(来自 Java 和 Python),正在尝试学习如何使用其他库。我找到了一些示例代码(来自 boost 站点)我想运行(如下)但它给了我这个错误:

`Undefined symbols for architecture x86_64:
"boost::gregorian::greg_month::get_month_map_ptr()", referenced from:
unsigned short boost::date_time::month_str_to_ushort<boost::gregorian::greg_month>(std::string const&) in main.o
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)`

我认为代码是可靠的(因为它不是我制作的 :-) 但我不确定使用另一个库所需的步骤。到目前为止,我只是添加了#include,但我是否也应该为此使用一个头文件(当我自己创建多个文件但不确定外部库时,我知道如何使用一个头文件)。

我发现了一个类似的问题(using from_string with boost date),建议我需要将它链接到 boost 的数据时间,所以我运行了命令(更改了文件名)并得到了这个错误:

`ld: library not found for -lboost_date_time
collect2: ld returned 1 exit status`

我认为我正确安装了 boost,我在 mac 上使用 Brew 并看到它编译了一堆文件(安装花了大约一个小时)。所以如果安装了它,我做错了什么(或没有做)?

谢谢

代码如下:

#include "boost/date_time/gregorian/gregorian.hpp"
#include <iostream>

int
main()
{

using namespace boost::gregorian;
std::string s;
std::cout << "Enter birth day YYYY-MM-DD (eg: 2002-02-01): ";
std::cin >> s;
try {
date birthday(from_simple_string(s));
date today = day_clock::local_day();
days days_alive = today - birthday;
days one_day(1);
if (days_alive == one_day) {
std::cout << "Born yesterday, very funny" << std::endl;
}
else if (days_alive < days(0)) {
std::cout << "Not born yet, hmm: " << days_alive.days()
<< " days" <<std::endl;
}
else {
std::cout << "Days alive: " << days_alive.days() << std::endl;
}

}
catch(...) {
std::cout << "Bad date entered: " << s << std::endl;
}
return 0;
}

最佳答案

boost 库通常有非常时髦的名称,其中包括构建选项,有时还包括版本。

在我的系统上,我可能会使用 -lboost_date_time-mgw45-d-1_47 链接到您提到的库。

关于c++ - 如何在 C++ 中使用外部库?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10484813/

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