• 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!

Compiling Compiling Error & Warnings

BBlackfur

That's my Shinobi Way
Joined
Dec 10, 2016
Messages
35
Reaction score
0
Hi, this is my first time trying to compile Tibia, so, please.. Bare with me here. haha o_O.

I'm getting these errors:
Gyazo - 4fd724eae08929cf07e30c303efc398e.png

Edit:
I completed compiling successfully, i do now have a .exe in the Release folder, do i keep it there and execut it or what? :eek:

Anyone who knows how to fix these?
Many thanks.
 
Last edited:
Your picture literally tells you how to solve it, but to make it easier for you:

Define:
_ENABLE_ATOMIC_ALIGNMENT_FIX
 
lockfree.h
under
C++:
#ifndef FS_LOCKFREE_H_8C707AEB7C7235A2FBC5D4EDDF03B008
#define FS_LOCKFREE_H_8C707AEB7C7235A2FBC5D4EDDF03B008
put
C++:
#if _MSC_FULL_VER >= 190023918 // Workaround for VS2015 Update 2. Boost.Lockfree is a header-only library, so this should be safe to do.
#define _ENABLE_ATOMIC_ALIGNMENT_FIX
#endif
 
lockfree.h
under
C++:
#ifndef FS_LOCKFREE_H_8C707AEB7C7235A2FBC5D4EDDF03B008
#define FS_LOCKFREE_H_8C707AEB7C7235A2FBC5D4EDDF03B008
put
C++:
#if _MSC_FULL_VER >= 190023918 // Workaround for VS2015 Update 2. Boost.Lockfree is a header-only library, so this should be safe to do.
#define _ENABLE_ATOMIC_ALIGNMENT_FIX
#endif
So i will search for that in the code and replace it with your code?

Yeah, I will tell you what has been told numerous times here on this forum. Specify what you are compiling.
Compling this:
[10.90 + Cast] Tfs 1.2 (custom modifications) + Reward Chest
 
Last edited by a moderator:
Back
Top