[quote="Dayman"]
Compiles (AMD64) and works.
MSVC 2010
Qt 4.8.2 (DLL)
Boost 1.49 (LIB)
libtorrent 0.16.1 (LIB)
OpenSSL 1.0.1c (DLL)
By the way. What are qbt sysreqs for windows? I mean WINVER and cpu instruction set SSE/SSE2.
I ask about WINVER 'cause of this:
line 157 of
http://libtorrent.svn.sourceforge.net/v ... iew=markup
It's probably possible to built with io scheduler on windows with SDK (or maybe MSVC includes headers/libraries anyway)
http://msdn.microsoft.com/en-us/library ... 85%29.aspx
Btw above code fails for me w/o
Code: Select all
sed -i -e "/^[[:space:]]\+FileIoPriorityHintInfo, \&priorityHint, sizeof/s|(PriorityHint|(FILE_IO_PRIORITY_HINT_INFO|" .\src\file_pool.cpp
SSE/SSE2 goes for -sse -sse2 configure options of Qt and /arch:[SSE|SSE2] compiler options of MSVC. Not sure if they actually do something. Qt SSE[2] stuff probably triggers only in GL code. /arch option on the other hand:
http://msdn.microsoft.com/en-us/library/7t5yh4fd.aspx
Not sure what to think about that, I don't think anybody running windows has a cpu w/o at least SSE1.
[/quote]
can you give me a tutorial on how to compile it ?
I do it follow
http://sourceforge.net/apps/mediawiki/q ... le=Windows, but meet some problems.