Ok now I understand and answer to my first question how much these debug symbols will slowdown everything is it wont slowdown. I tried to attach gdb to spring, but since it was running normaly there was nothing interesting to see, will try to do so when it will really crash.
when you do a RELEASE build with spring, the binary is ~10MB. if you do a DEBUG2 build, the binary is ~100MB, because of the additional debug symbols inside. using a command line tool, you can separate these ~100MB into a 10MB binary and 90MB debug symbols file. you cna then run the 10MB binary normally, and it should be just as fast as the normal RELEASE build, but you can then make use of the other 90MB just when you need them (eg in case of a crash), because the addresses and references of the two files match.
wolas, it compiles RELESEWITHDEBUGSYMBOLS or something like that, by default. that means.. it will be huge, nad have the debug symbols, but it should not be slow.
Users browsing this forum: No registered users and 1 guest
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot post attachments in this forum