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

TFS 1.X+ Compilling TFS on debug mode

narko

vertrauenswürdig ~
Joined
Oct 19, 2008
Messages
1,317
Solutions
2
Reaction score
131
Location
Unknown
A while ago I once compiled TFS with debug mode under Linux so I could read gdb crash report more precisely and detailed. Now I can't remember how I did this. I'd really appreciate any help with the correct compilling parameters.

Thanks in advance.
 
Solution
You can specify the build type when you generate the build files with CMake. I personally would go for RelWithDebInfo instead of Debug.
Code:
cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo ..
You can specify the build type when you generate the build files with CMake. I personally would go for RelWithDebInfo instead of Debug.
Code:
cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo ..
 
Solution
Back
Top