My team and I encountered an obstacle during one of the projects using the C++ native SDK.
Until the very last step, everything seems to work correctly: the application compiles, the binaries (along with the .pdb files) are successfully uploaded and processed (I’m using the --wait
option with the upload-dif
command of the CLI tool), the crash report is sent to the server and the server successfully finds the corresponding debug information files.
However, the debug information file for our uploaded binary fails to process and therefore the call stack is not displayed. I get controversial feedback regarding the result of processing the debug information file (the attached image shows the same page with the cursor hovering over two different areas):
An error is also displayed near the top of the page telling me that
The debug information file used was broken
The ‘Debug Files’ page shows all the files and the ‘Processing Issues’ page shows no issues.
This error only occurs for our Release builds on Windows, the Debug and OSX builds work as expected. I tried using the /DEBUG:FULL
linker flag to avoid generating a fastlink PDB (even though it didn’t seem necessary in another project). I also checked the PDB with sentry-cli difutil check
and it said that my file was usable.
I’m out of ideas at this point and I’d like to ask for your help in determining the next step towards solving the problem.
Thank you all in advance!