• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

OTClient Compile problems.

Demnish

Tibian Hero
Joined
Sep 28, 2011
Messages
402
Solutions
2
Reaction score
65
Location
Sweden
I got this error when trying to compile x32:
Error LNK1104 cannot open file 'libboost_thread-vc140-mt-s-x32-1_68.lib' otclient C:\Users\***\otclient-sdk-master\otclient\vc14\LINK 1
The file simply does not exist anywhere.

I've followed this tutorial to 100% for VC17:
edubart/otclient


Would greatly appreciate some help, I don't know how to build a boost.
Maybe someone could teach me the ways or point me in the right direction?
 
Last edited:
there is one of the of the libs that you have missed or took wrong
libboost_thread-vc140-mt-s-x32-1_68.lib
 
The problem is there exists an old version of the boost in the "standard" boost folder that comes with the project:
libboost_thread-vc140-mt-s-1_63.lib

But I am using 1_68 boost (due to problems with the 1_63) and that folder does not contain such a file, which led me to the conclusion that I have to create it.
I've searched the entire folder for it but it is nowhere to be found.

All other files necessary up to this point has been added without any problems.

EDIT: I managed to create the file, however it is missing the "-s-" in the name, which makes it break. Do anyone know which command to use in bjam to add the "-s-"?
I have:
libboost_thread-vc140-mt-1_68.lib
I need:
libboost_thread-vc140-mt-s-1_68.lib
 
Last edited:
Back
Top Bottom