本文介绍了如何编译libtorrent(rasterbar)代码?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
I want to compile example (make_torrent) from libtorrent official website:
g++ create_torrent_file.cpp -o run -lboost_filesystem-mt
但是我得到这个错误:
But I get this error:
create_torrent_file.cpp:(.text+0x158): undefined reference to
`libtorrent::file_storage::file_storage()'
我安装了libtorrent-rasterbar
I have libtorrent-rasterbar installed
ldconfig -v | grep libtorrent:
libtorrent-rasterbar.so.6 -> libtorrent-rasterbar.so.6.0.0
那么我应该如何编译这个源代码?
So how should I compile this source code?
推荐答案
您需要将libtorrent-rasterbar添加到链接器。尝试以下命令:
You need to add libtorrent-rasterbar to the linker. Try the following command:
g++ create_torrent_file.cpp -o run -ltorrent-rasterbar -lboost_filesystem-mt
这篇关于如何编译libtorrent(rasterbar)代码?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!