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()'

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?

有帮助吗?

解决方案

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
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top