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
When building the SDK in debug mode with cmake, it generates the .pdb files alongside the dlls in the build/src folder
But when installing, the pdb files are not copied in the install folder
In the build folder:
In the install folder:
I would like these debug files to be able to have more detailed stacktraces on sentry
Expected Behavior
Copy the pdb files in the install folder along the dlls in debug mode
Current Behavior
Pdb files are not copied alongside the dll files during the cmake installation
Reproduction Steps
Build the sdk in debug mode
Possible Solution
Maybe add something like this somewhere in the cmake file?
if (MSVC)
install(FILES $<TARGET_PDB_FILE:MyExecutable> DESTINATION bin OPTIONAL)
endif()
This issue is now closed. Comments on closed issues are hard for our team to see.
If you need more assistance, please open a new issue that references this one.
jmklix
added
investigating
This issue is being investigated and/or work is in progress to resolve the issue.
p3
This is a minor priority issue
and removed
needs-triage
This issue or PR still needs to be triaged.
labels
May 28, 2024
jmklix
removed
the
investigating
This issue is being investigated and/or work is in progress to resolve the issue.
label
Nov 27, 2024
Describe the bug
When building the SDK in debug mode with cmake, it generates the .pdb files alongside the dlls in the build/src folder
But when installing, the pdb files are not copied in the install folder
In the build folder:
In the install folder:
I would like these debug files to be able to have more detailed stacktraces on sentry
Expected Behavior
Copy the pdb files in the install folder along the dlls in debug mode
Current Behavior
Pdb files are not copied alongside the dll files during the cmake installation
Reproduction Steps
Build the sdk in debug mode
Possible Solution
Maybe add something like this somewhere in the cmake file?
Additional Information/Context
My build script:
AWS CPP SDK version used
1.11.328
Compiler and Version used
MSVC 14.39.33519
Operating System and version
Windows 11
The text was updated successfully, but these errors were encountered: