gpt4 book ai didi

c++ - Boost C++ 架构 x86_64 的 undefined symbol

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

我试图为 Boost 库编译以下简单的线程示例:

        #include <iostream>
#include <boost/thread.hpp>
#include <boost/chrono.hpp>

using namespace std;

void thread()
{
for (int i = 0; i < 5; ++i)
{
cout << i << '\n';
}
}

int main()
{
boost::thread t{thread};
t.join();
}

使用

  g++ -std=c++11 -I /usr/local/boost_1_57_0 simpleThreadExample.cpp

然后编译器把这个还给我:

       Undefined symbols for architecture x86_64:
"boost::detail::thread_data_base::~thread_data_base()", referenced from:
boost::detail::thread_data<void (*)()>::~thread_data() in simpleThreadExample-7cec5e.o
"boost::system::system_category()", referenced from:
___cxx_global_var_init2 in simpleThreadExample-7cec5e.o
boost::thread_exception::thread_exception(int, char const*) in simpleThreadExample-7cec5e.o
"boost::system::generic_category()", referenced from:
___cxx_global_var_init in simpleThreadExample-7cec5e.o
___cxx_global_var_init1 in simpleThreadExample-7cec5e.o
"boost::thread::join_noexcept()", referenced from:
boost::thread::join() in simpleThreadExample-7cec5e.o
"boost::thread::native_handle()", referenced from:
boost::thread::get_id() const in simpleThreadExample-7cec5e.o
"boost::thread::start_thread_noexcept()", referenced from:
boost::thread::start_thread() in simpleThreadExample-7cec5e.o
"boost::thread::detach()", referenced from:
boost::thread::~thread() in simpleThreadExample-7cec5e.o
"typeinfo for boost::detail::thread_data_base", referenced from:
typeinfo for boost::detail::thread_data<void (*)()> in simpleThreadExample-7cec5e.o
"vtable for boost::detail::thread_data_base", referenced from:
boost::detail::thread_data_base::thread_data_base() in simpleThreadExample-7cec5e.o
NOTE: a missing vtable usually means the first non-inline virtual member function has no definition.
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)

现在,下面两个程序可以正常编译和运行:

        #include <locale>
#include <boost/date_time/gregorian/gregorian.hpp>
#include <boost/date_time/posix_time/posix_time.hpp>

using namespace std;
using namespace boost::gregorian;
using namespace boost::posix_time;

int main()
{

date today = day_clock::local_day();
cout << today << endl;

}

        #include <iostream>
#include <iomanip>
#include <boost/geometry.hpp>
#include <boost/geometry/geometries/point.hpp>

using namespace std;

int main()
{

//point_type p = boost::geometry::make<point_type>(1, 2, 3);
//std::cout << boost::geometry::dsv(p) << std::endl;
//return 0;


boost::geometry::model::point<int, 3, boost::geometry::cs::cartesian> p;
boost::geometry::assign_values(p,1, 2, 3);

boost::geometry::model::point<int, 3, boost::geometry::cs::cartesian> p2;

p2 = p;

cout << boost::geometry::dsv(p) << endl;

cout << boost::geometry::dsv(p2) << endl;

return 0;
}

而且,当我编译时,我会:

g++ -std=c++11 -I /usr/local/boost_1_57_0 <nameOfProgram.cpp>

所以,我想知道为什么线程程序无法编译而其他两个程序可以编译,而我唯一要更改的是程序的名称?

如果有帮助,我正在使用 Boost 1.57,它的路径是:

 /usr/local/Cellar/boost/1.57.0

头文件的路径是:

/usr/local/Cellar/boost/1.57.0/include/boost

如果有人能提供一些见解,那就太好了。谢谢!

最佳答案

你也必须链接到 boost 库:

-lboost_thread

可能有额外的 -L 路径参数,也可能是标准的 -lpthread

关于c++ - Boost C++ 架构 x86_64 的 undefined symbol ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29542337/

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