• 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 [OTCLIENT] glew32s.lib

Sekinpu

New Member
Joined
Jul 7, 2020
Messages
26
Solutions
1
Reaction score
1
can someone help me with this ? :S

Code:
1>------ Build started: Project: otclient, Configuration: Release Win32 ------
1>LINK : fatal error LNK1181: cannot open input file 'glew32s.lib'
1>Done building project "otclient.vcxproj" -- FAILED.
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
 
I solved this problem but I have another one
Code:
1>------ Build started: Project: otclient, Configuration: Release Win32 ------
1>   Creating library D:\Users\otclient-master\vc14\../otclient.lib and object D:\Users\otclient-master\vc14\../otclient.exp
1>LINK : warning LNK4098: defaultlib 'MSVCRT' conflicts with use of other libs; use /NODEFAULTLIB:library
1>filestream.obj : error LNK2001: unresolved external symbol _PHYSFS_readBytes
1>filestream.obj : error LNK2001: unresolved external symbol _PHYSFS_writeBytes
1>filestream.obj : error LNK2001: unresolved external symbol _PHYSFS_getErrorByCode
1>filestream.obj : error LNK2001: unresolved external symbol _PHYSFS_getLastErrorCode
1>resourcemanager.obj : error LNK2001: unresolved external symbol _PHYSFS_stat
1>resourcemanager.obj : error LNK2001: unresolved external symbol _PHYSFS_unmount
1>crypt.obj : error LNK2001: unresolved external symbol _RSA_public_encrypt
1>crypt.obj : error LNK2001: unresolved external symbol _RSA_size
1>crypt.obj : error LNK2001: unresolved external symbol _RSA_private_decrypt
1>crypt.obj : error LNK2001: unresolved external symbol _RSA_free
1>crypt.obj : error LNK2001: unresolved external symbol _RSA_new
1>crypt.obj : error LNK2001: unresolved external symbol _BN_dec2bn
1>crypt.obj : error LNK2001: unresolved external symbol _BN_MONT_CTX_free
1>lua51.lib(lj_debug.obj) : error LNK2001: unresolved external symbol __imp__strncpy
1>physfs.lib(physfs.obj) : error LNK2001: unresolved external symbol __imp__strncpy
1>lua51.lib(lib_io.obj) : error LNK2001: unresolved external symbol __imp__clearerr
1>lua51.lib(lib_io.obj) : error LNK2001: unresolved external symbol __imp__fgets
1>lua51.lib(lib_debug.obj) : error LNK2001: unresolved external symbol __imp__fgets
1>lua51.lib(lib_io.obj) : error LNK2001: unresolved external symbol __imp___pclose
1>lua51.lib(lib_io.obj) : error LNK2001: unresolved external symbol __imp___popen
1>lua51.lib(lib_io.obj) : error LNK2001: unresolved external symbol __imp__tmpfile
1>lua51.lib(lib_os.obj) : error LNK2001: unresolved external symbol __imp___difftime64
1>lua51.lib(lib_os.obj) : error LNK2001: unresolved external symbol __imp___mktime64
1>physfs.lib(zip.obj) : error LNK2001: unresolved external symbol __imp___mktime64
1>physfs.lib(windows.obj) : error LNK2001: unresolved external symbol __imp___mktime64
1>lua51.lib(lib_os.obj) : error LNK2001: unresolved external symbol __imp__remove
1>lua51.lib(lib_os.obj) : error LNK2001: unresolved external symbol __imp__rename
1>lua51.lib(lib_os.obj) : error LNK2001: unresolved external symbol __imp__tmpnam
1>lua51.lib(lib_os.obj) : error LNK2001: unresolved external symbol __imp__system
1>physfs.lib(lzma.obj) : error LNK2001: unresolved external symbol __imp__bsearch
1>MSVCRT.lib(_chandler4gs_.obj) : error LNK2001: unresolved external symbol __except_handler4_common
1>D:\Users\otclient-master\vc14\../otclient.exe : fatal error LNK1120: 27 unresolved externals
1>Done building project "otclient.vcxproj" -- FAILED.
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
 
Last edited:
Which Visual Studio version are you using to compile with? It could be causing an issue.

It also sounds like you're trying to mix your Release and Debug builds causing VS to try to load two different CRT versions.

Could you link us the OTClient source you're building off of?
 
Last edited:
The otclient.sln MSVS project file is no longer configured for use with OTClient SDK. Please follow Compiling on Windows (with vcpkg) instead
but if i try install vcpkg i se only :
ta.png
 
Last edited:
i started all over again and i have this :
its some progress on my jobs ^^
consol.png
next i instal :
Code:
.\vcpkg install boost-iostreams:x86-windows boost-asio:x86-windows boost-system:x86-windows boost-variant:x86-windows boost-lockfree:x86-windows luajit:x86-windows glew:x86-windows boost-filesystem:x86-windows boost-uuid:x86-windows physfs:x86-windows openal-soft:x86-windows libogg:x86-windows libvorbis:x86-windows zlib:x86-windows opengl:x86-windows
finaly i have this statement:
consol2.png
now what next ? :D
in the meantime I tried to build a client and have error :

Code:
1>   Creating library C:\Users\kompiuter\Desktop\otclient-master\vc14\../otclient.lib and object C:\Users\kompiuter\Desktop\otclient-master\vc14\../otclient.exp
1>filestream.obj : error LNK2001: unresolved external symbol _PHYSFS_readBytes
1>filestream.obj : error LNK2001: unresolved external symbol _PHYSFS_writeBytes
1>filestream.obj : error LNK2001: unresolved external symbol _PHYSFS_getErrorByCode
1>filestream.obj : error LNK2001: unresolved external symbol _PHYSFS_getLastErrorCode
1>resourcemanager.obj : error LNK2001: unresolved external symbol _PHYSFS_stat
1>resourcemanager.obj : error LNK2001: unresolved external symbol _PHYSFS_unmount
1>C:\Users\kompiuter\Desktop\otclient-master\vc14\../otclient.exe : fatal error LNK1120: 6 unresolved externals
1>Done building project "otclient.vcxproj" -- FAILED.
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
 
Last edited:
Try installing vcpkg directly in your C:\ drive, not any subfolder. Also, do you have vcpkg and VS installed in the same drive? I noticed you were trying to build it originally in the D:\ drive and now are trying in the C:\ drive lol
 
Code:
1>   Creating library C:\Users\kompiuter\Desktop\otclient-master\vc14\../otclient.lib and object C:\Users\kompiuter\Desktop\otclient-master\vc14\../otclient.exp
1>filestream.obj : error LNK2001: unresolved external symbol _PHYSFS_readBytes
1>filestream.obj : error LNK2001: unresolved external symbol _PHYSFS_writeBytes
1>filestream.obj : error LNK2001: unresolved external symbol _PHYSFS_getErrorByCode
1>filestream.obj : error LNK2001: unresolved external symbol _PHYSFS_getLastErrorCode
1>resourcemanager.obj : error LNK2001: unresolved external symbol _PHYSFS_stat
1>resourcemanager.obj : error LNK2001: unresolved external symbol _PHYSFS_unmount
1>C:\Users\kompiuter\Desktop\otclient-master\vc14\../otclient.exe : fatal error LNK1120: 6 unresolved externals
1>Done building project "otclient.vcxproj" -- FAILED.
========== Rebuild All: 0 succeeded, 1 failed, 0 skipped ==========
I'm going to cut the veins
 
i dont know what you mean im green on compiling
I only download vs2017 and try to compiling otclient :D
if i try compiling tfs its work great but not otclient
 
Try building this one. It's been the most developed so far. Edubart's OTClient has been dying.

 
if i try mehah otclient im must to change windowsk sdk version to : 10.0.14393.0 and platform toolset : visual studio 2017 (v141) and give me this:
Code:
1>------ Rebuild All started: Project: otclient, Configuration: Release Win32 ------
1>animatedtext.cpp
1>animator.cpp
1>client.cpp
1>container.cpp
1>C:\Users\kompiuter\Desktop\otclient-cache-for-all\src\framework/stdext/thread.h(26): fatal error C1083: Cannot open include file: 'boost/thread/future.hpp': No such file or directory (compiling source file ..\src\client\container.cpp)
1>C:\Users\kompiuter\Desktop\otclient-cache-for-all\src\framework/stdext/thread.h(26): fatal error C1083: Cannot open include file: 'boost/thread/future.hpp': No such file or directory (compiling source file ..\src\client\animator.cpp)
1>C:\Users\kompiuter\Desktop\otclient-cache-for-all\src\framework/stdext/thread.h(26): fatal error C1083: Cannot open include file: 'boost/thread/future.hpp': No such file or directory (compiling source file ..\src\client\client.cpp)
1>C:\Users\kompiuter\Desktop\otclient-cache-for-all\src\framework/stdext/thread.h(26): fatal error C1083: Cannot open include file: 'boost/thread/future.hpp': No such file or directory (compiling source file ..\src\client\animatedtext.cpp)
1>creature.cpp
1>creatures.cpp
1>effect.cpp
1>game.cpp
1>C:\Users\kompiuter\Desktop\otclient-cache-for-all\src\framework/stdext/thread.h(26): fatal error C1083: Cannot open include file: 'boost/thread/future.hpp': No such file or directory (compiling source file ..\src\client\creature.cpp)
1>houses.cpp
1>C:\Users\kompiuter\Desktop\otclient-cache-for-all\src\framework/stdext/thread.h(26): fatal error C1083: Cannot open include file: 'boost/thread/future.hpp': No such file or directory (compiling source file ..\src\client\game.cpp)
1>item.cpp
1>C:\Users\kompiuter\Desktop\otclient-cache-for-all\src\framework/stdext/thread.h(26): fatal error C1083: Cannot open include file: 'boost/thread/future.hpp': No such file or directory (compiling source file ..\src\client\effect.cpp)
1>itemtype.cpp
1>C:\Users\kompiuter\Desktop\otclient-cache-for-all\src\framework/stdext/thread.h(26): fatal error C1083: Cannot open include file: 'boost/thread/future.hpp': No such file or directory (compiling source file ..\src\client\creatures.cpp)
1>lightview.cpp
1>C:\Users\kompiuter\Desktop\otclient-cache-for-all\src\framework/stdext/thread.h(26): fatal error C1083: Cannot open include file: 'boost/thread/future.hpp': No such file or directory (compiling source file ..\src\client\houses.cpp)
1>localplayer.cpp
1>C:\Users\kompiuter\Desktop\otclient-cache-for-all\src\framework/stdext/thread.h(26): fatal error C1083: Cannot open include file: 'boost/thread/future.hpp': No such file or directory (compiling source file ..\src\client\item.cpp)
1>luafunctions.cpp
1>C:\Users\kompiuter\Desktop\otclient-cache-for-all\src\framework/stdext/thread.h(26): fatal error C1083: Cannot open include file: 'boost/thread/future.hpp': No such file or directory (compiling source file ..\src\client\itemtype.cpp)
1>luavaluecasts.cpp
1>C:\Users\kompiuter\Desktop\otclient-cache-for-all\src\framework/stdext/thread.h(26): fatal error C1083: Cannot open include file: 'boost/thread/future.hpp': No such file or directory (compiling source file ..\src\client\lightview.cpp)
1>map.cpp
1>C:\Users\kompiuter\Desktop\otclient-cache-for-all\src\framework/stdext/thread.h(26): fatal error C1083: Cannot open include file: 'boost/thread/future.hpp': No such file or directory (compiling source file ..\src\client\localplayer.cpp)
1>mapio.cpp
1>C:\Users\kompiuter\Desktop\otclient-cache-for-all\src\framework/stdext/thread.h(26): fatal error C1083: Cannot open include file: 'boost/thread/future.hpp': No such file or directory (compiling source file ..\src\client\luafunctions.cpp)
1>mapview.cpp
1>C:\Users\kompiuter\Desktop\otclient-cache-for-all\src\framework/stdext/thread.h(26): fatal error C1083: Cannot open include file: 'boost/thread/future.hpp': No such file or directory (compiling source file ..\src\client\luavaluecasts.cpp)
1>minimap.cpp
1>C:\Users\kompiuter\Desktop\otclient-cache-for-all\src\framework/stdext/thread.h(26): fatal error C1083: Cannot open include file: 'boost/thread/future.hpp': No such file or directory (compiling source file ..\src\client\map.cpp)
1>missile.cpp
1>C:\Users\kompiuter\Desktop\otclient-cache-for-all\src\framework/stdext/thread.h(26): fatal error C1083: Cannot open include file: 'boost/thread/future.hpp': No such file or directory (compiling source file ..\src\client\mapio.cpp)
1>outfit.cpp
1>C:\Users\kompiuter\Desktop\otclient-cache-for-all\src\framework/stdext/thread.h(26): fatal error C1083: Cannot open include file: 'boost/thread/future.hpp': No such file or directory (compiling source file ..\src\client\mapview.cpp)
1>player.cpp
1>C:\Users\kompiuter\Desktop\otclient-cache-for-all\src\framework/stdext/thread.h(26): fatal error C1083: Cannot open include file: 'boost/thread/future.hpp': No such file or directory (compiling source file ..\src\client\minimap.cpp)
1>protocolcodes.cpp
1>C:\Users\kompiuter\Desktop\otclient-cache-for-all\src\framework/stdext/thread.h(26): fatal error C1083: Cannot open include file: 'boost/thread/future.hpp': No such file or directory (compiling source file ..\src\client\missile.cpp)
1>protocolgame.cpp
1>C:\Users\kompiuter\Desktop\otclient-cache-for-all\src\framework/stdext/thread.h(26): fatal error C1083: Cannot open include file: 'boost/thread/future.hpp': No such file or directory (compiling source file ..\src\client\player.cpp)
1>protocolgameparse.cpp
1>C:\Users\kompiuter\Desktop\otclient-cache-for-all\src\framework/stdext/thread.h(26): fatal error C1083: Cannot open include file: 'boost/thread/future.hpp': No such file or directory (compiling source file ..\src\client\outfit.cpp)
1>protocolgamesend.cpp
1>C:\Users\kompiuter\Desktop\otclient-cache-for-all\src\framework/stdext/thread.h(26): fatal error C1083: Cannot open include file: 'boost/thread/future.hpp': No such file or directory (compiling source file ..\src\client\protocolcodes.cpp)
1>shadermanager.cpp
1>C:\Users\kompiuter\Desktop\otclient-cache-for-all\src\framework/stdext/thread.h(26): fatal error C1083: Cannot open include file: 'boost/thread/future.hpp': No such file or directory (compiling source file ..\src\client\protocolgame.cpp)
1>spritemanager.cpp
1>C:\Users\kompiuter\Desktop\otclient-cache-for-all\src\framework/stdext/thread.h(26): fatal error C1083: Cannot open include file: 'boost/thread/future.hpp': No such file or directory (compiling source file ..\src\client\protocolgameparse.cpp)
1>statictext.cpp
1>C:\Users\kompiuter\Desktop\otclient-cache-for-all\src\framework/stdext/thread.h(26): fatal error C1083: Cannot open include file: 'boost/thread/future.hpp': No such file or directory (compiling source file ..\src\client\protocolgamesend.cpp)
1>thing.cpp
1>C:\Users\kompiuter\Desktop\otclient-cache-for-all\src\framework/stdext/thread.h(26): fatal error C1083: Cannot open include file: 'boost/thread/future.hpp': No such file or directory (compiling source file ..\src\client\shadermanager.cpp)
1>thingtype.cpp
1>C:\Users\kompiuter\Desktop\otclient-cache-for-all\src\framework/stdext/thread.h(26): fatal error C1083: Cannot open include file: 'boost/thread/future.hpp': No such file or directory (compiling source file ..\src\client\spritemanager.cpp)
1>thingtypemanager.cpp
1>C:\Users\kompiuter\Desktop\otclient-cache-for-all\src\framework/stdext/thread.h(26): fatal error C1083: Cannot open include file: 'boost/thread/future.hpp': No such file or directory (compiling source file ..\src\client\statictext.cpp)
1>tile.cpp
1>C:\Users\kompiuter\Desktop\otclient-cache-for-all\src\framework/stdext/thread.h(26): fatal error C1083: Cannot open include file: 'boost/thread/future.hpp': No such file or directory (compiling source file ..\src\client\thing.cpp)
1>towns.cpp
1>C:\Users\kompiuter\Desktop\otclient-cache-for-all\src\framework/stdext/thread.h(26): fatal error C1083: Cannot open include file: 'boost/thread/future.hpp': No such file or directory (compiling source file ..\src\client\thingtype.cpp)
1>uicreature.cpp
1>C:\Users\kompiuter\Desktop\otclient-cache-for-all\src\framework/stdext/thread.h(26): fatal error C1083: Cannot open include file: 'boost/thread/future.hpp': No such file or directory (compiling source file ..\src\client\thingtypemanager.cpp)
1>uiitem.cpp
1>C:\Users\kompiuter\Desktop\otclient-cache-for-all\src\framework/stdext/thread.h(26): fatal error C1083: Cannot open include file: 'boost/thread/future.hpp': No such file or directory (compiling source file ..\src\client\tile.cpp)
1>uimap.cpp
1>C:\Users\kompiuter\Desktop\otclient-cache-for-all\src\framework/stdext/thread.h(26): fatal error C1083: Cannot open include file: 'boost/thread/future.hpp': No such file or directory (compiling source file ..\src\client\towns.cpp)
1>uimapanchorlayout.cpp
1>C:\Users\kompiuter\Desktop\otclient-cache-for-all\src\framework/stdext/thread.h(26): fatal error C1083: Cannot open include file: 'boost/thread/future.hpp': No such file or directory (compiling source file ..\src\client\uicreature.cpp)
1>uiminimap.cpp
1>C:\Users\kompiuter\Desktop\otclient-cache-for-all\src\framework/stdext/thread.h(26): fatal error C1083: Cannot open include file: 'boost/thread/future.hpp': No such file or directory (compiling source file ..\src\client\uiitem.cpp)
1>uiprogressrect.cpp
1>C:\Users\kompiuter\Desktop\otclient-cache-for-all\src\framework/stdext/thread.h(26): fatal error C1083: Cannot open include file: 'boost/thread/future.hpp': No such file or directory (compiling source file ..\src\client\uimap.cpp)
1>uisprite.cpp
1>C:\Users\kompiuter\Desktop\otclient-cache-for-all\src\framework/stdext/thread.h(26): fatal error C1083: Cannot open include file: 'boost/thread/future.hpp': No such file or directory (compiling source file ..\src\client\uimapanchorlayout.cpp)
1>C:\Users\kompiuter\Desktop\otclient-cache-for-all\src\framework/stdext/thread.h(26): fatal error C1083: Cannot open include file: 'boost/thread/future.hpp': No such file or directory (compiling source file ..\src\client\uiminimap.cpp)
1>C:\Users\kompiuter\Desktop\otclient-cache-for-all\src\framework/stdext/thread.h(26): fatal error C1083: Cannot open include file: 'boost/thread/future.hpp': No such file or directory (compiling source file ..\src\client\uiprogressrect.cpp)
1>C:\Users\kompiuter\Desktop\otclient-cache-for-all\src\framework/stdext/thread.h(26): fatal error C1083: Cannot open include file: 'boost/thread/future.hpp': No such file or directory (compiling source file ..\src\client\uisprite.cpp)
1>Done building project "otclient.vcxproj" -- FAILED.
========== Rebuild All: 0 succeeded, 1 failed, 0 skipped ==========
 
Try running:
Bash:
./vcpkg install boost-iostreams:x86-windows boost-asio:x86-windows boost-system:x86-windows boost-variant:x86-windows boost-lockfree:x86-windows luajit:x86-windows glew:x86-windows boost-filesystem:x86-windows boost-uuid:x86-windows physfs:x86-windows openal-soft:x86-windows libogg:x86-windows libvorbis:x86-windows zlib:x86-windows opengl:x86-windows
in your C:/vcpkg folder again and then compiling for Release, Win32. I just built it on VS 2019 with no problems.
 
Back
Top