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

Solved compiled .exe problem

hubertcornejo

Hubertz
Joined
Mar 9, 2011
Messages
7
Reaction score
0
i compiled the latest forgotten server (x64) y put the correct .dlls, 0 bugs in the compiling prosses, but when i wanna open the exe. it just disappear, dont say errors or problems

windows 10 x64
visual basic 2015 (enterprice, update 3)
 
you must compile it in release mode, compiling it in debug mode makes it close every time you open it
Hv1Gg8h.png
 
you must compile it in release mode, compiling it in debug mode makes it close every time you open it
release/debug are preset solution configurations, its just a label you can call it whatever you want, when you choose debug build basically this preset will turn off compiler optimiser and define symbols in your code (sometimes its compiled together with the modules binary, or in a separate file, usually MSVC craete a PDB file). The difference between the default labels (you can change/create a new solution configuration) is that Release will be optimised and will not run unnecessary code that is for your readability, you can run a server with debugging options.

a further read:
https://gcc.gnu.org/onlinedocs/gcc/Debugging-Options.html
 
Back
Top