Question

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?

Was it helpful?

Solution

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
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top