Re: [CMake] Packaging debug symbol files on Windows

2015-07-27 Thread J Decker
Debug also adds padding between functions and stack checking which can significantly add to code size for smaller libraries... or libraries with lots of tiny functions. On Mon, Jul 27, 2015 at 9:13 AM, Andreas Pakulat wrote: > Hi Nils, > > On Mon, Jul 27, 2015 at 3:58 PM, Nils Gladitz > wrote:

Re: [CMake] Packaging debug symbol files on Windows

2015-07-27 Thread Andreas Pakulat
Hi Nils, On Mon, Jul 27, 2015 at 3:58 PM, Nils Gladitz wrote: > On 07/27/2015 03:46 PM, Andreas Pakulat wrote: > >> I've meanwhile also noticed that the default compiler flags that CMake >> uses include the debug information in the dll itself (dll size is >> doubled), so for now don't even have

Re: [CMake] Packaging debug symbol files on Windows

2015-07-27 Thread Nils Gladitz
On 07/27/2015 03:46 PM, Andreas Pakulat wrote: I've meanwhile also noticed that the default compiler flags that CMake uses include the debug information in the dll itself (dll size is doubled), so for now don't even have to have the separate pdb files packaged anymore (in this case the pdb info i

Re: [CMake] Packaging debug symbol files on Windows

2015-07-27 Thread Andreas Pakulat
Hi Nils, On Mon, Jul 27, 2015 at 3:12 PM, Nils Gladitz wrote: > On 07/27/2015 02:25 PM, Andreas Pakulat wrote: > >> Hi, >> >> I'm trying to generate a zip file (on Windows) for a shared library >> including the generated debug symbols in pdb files with CPack. >> Unfortunately CPack does not seem

Re: [CMake] Packaging debug symbol files on Windows

2015-07-27 Thread Nils Gladitz
On 07/27/2015 02:25 PM, Andreas Pakulat wrote: Hi, I'm trying to generate a zip file (on Windows) for a shared library including the generated debug symbols in pdb files with CPack. Unfortunately CPack does not seem to pick up the pdb files all by itself and after cross-reading the cpack docs in

[CMake] Packaging debug symbol files on Windows

2015-07-27 Thread Andreas Pakulat
Hi, I'm trying to generate a zip file (on Windows) for a shared library including the generated debug symbols in pdb files with CPack. Unfortunately CPack does not seem to pick up the pdb files all by itself and after cross-reading the cpack docs in the cmake wiki I didn't see any switch to enable