You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm currently trying to track a bug/crash/feature/my-own-fault originating in the systemc package.
Debugging on MSVC can be done using debug information built-in or external PDB's (/Z7 vs /Zi).
The Debug MSVC packages currently do not contain this information.
This means the debug packages do not provide any extra convenience (apart from some extra assertions).
To track the code flow inside the systemc library,
I will have to modify the systemc library to also package the pdb file in debug mode.
I don't think this is the supposed way.
Package and Environment Details (include every applicable attribute)
Package Name/Version: all/all
Operating System+version: Windows
Compiler+version: Visual Studio
Docker image: n/a
Conan version: conan 1.25.2
Python version: Python 3.8.3
The text was updated successfully, but these errors were encountered:
I agree with @madebr .
I mostly use Debug/RelWithDebInfo build types.
Unfortunately I had to change almost all recipes that I use in order to have pdb symbols.
I understand that pdb consumes a lot of disk space and that conan-center-index may be limited by that. If this is the only reason, then I believe that it would be better if conan-center-index only provided Release pre-built binaries and users could add --build missing when they needed another build type.
Of course it would also be nice if conan-center-index CI would try to build for all build types in order to make sure that it works before uploading Release binaries to a conan server.
I'm currently trying to track a bug/crash/feature/my-own-fault originating in the systemc package.
Debugging on MSVC can be done using debug information built-in or external PDB's (/Z7 vs /Zi).
The Debug MSVC packages currently do not contain this information.
This means the debug packages do not provide any extra convenience (apart from some extra assertions).
To track the code flow inside the systemc library,
I will have to modify the systemc library to also package the pdb file in debug mode.
I don't think this is the supposed way.
Package and Environment Details (include every applicable attribute)
The text was updated successfully, but these errors were encountered: