Skip to main content
The 2024 Developer Survey results are live! See the results

Questions tagged [debug-symbols]

A debug symbol is information that expresses which programming-language constructs generated a specific piece of machine code in a given executable module.

debug-symbols
0 votes
0 answers
33 views

dSYM file missing on Xcode 15 archive

In Xcode 14, when I archived my project, it generated a .dSYM file within the .xcarchive. Since upgrading to Xcode 15, this no longer get generated. Why? (I do not believe I changed any project ...
Paul Masri-Stone's user avatar
1 vote
0 answers
49 views

Crashlytics missing required dSYM with same UUID across app versions

I have a dSYM/crash problem in Crashlytics. Every release i make it complains about a missing required dSYM with the same UUID. My understanding is that every time i archive my application a new dSYM ...
Martin's user avatar
  • 301
-1 votes
1 answer
66 views

Facing error while making iOS build in xcode 15.2

`Failed to build iOS app in Xcode 15.2. I am facing this errors ("ld: Undefined symbols" and "clang: error: linker command failed with exit code 1 (use -v to see invocation)"). ...
Arslan Zafar's user avatar
1 vote
1 answer
65 views

Downloading Symbols Artifact generated by PublishSymbols@2 from Azure DevOps GUI is not possible

I'm trying to download my published symbols that contain my c++ project .PDBs in Azure DevOps GUI but it is not giving me the possibility to do so. Am I missing something ? I went to the pipeline ...
avionics isus's user avatar
0 votes
0 answers
45 views

How to download system PDBs of particular version/timestamp

I have a dump collected from a system that I don't have access to. Opening the dump in windbg shows incomplete callstack due to missing symbols for kernelbase.dll. I have set the symbol path - SRV*C:\...
devstability's user avatar
0 votes
0 answers
20 views

Trying to load symbols for a VSDiagnostics report (diagsession) doesn't have any results

I am trying to run diagnostics from commandline as a test so I can then move on to profile our production app with production data. I'm following this guide for collecting data https://learn.microsoft....
John Demetriou's user avatar
0 votes
1 answer
93 views

How to (re)name a stripped (unnamed) LLDB symbol?

TL;DR I’m trying to debug a binary that’s been stripped, thus missing symbol names for some procedures. Is there some way I can — even if only for the session — name particular unnamed/stripped ...
mavenor's user avatar
  • 318
1 vote
1 answer
192 views

Improve g++ compiler flags for debug and release

I am making a game in c++ with sdl2, and I am currently compiling the program with g++ using the following flags: DEBUG_FLAGS = -g -Og -DDEBUG RELEASE_FLAGS = -O3 -DNDEBUG -mwindows -s I want the ...
Invader88's user avatar
0 votes
1 answer
35 views

EKS AMI kernel debug symbols

I need kernel debug symbols (debuginfo) of Amazon AMIs used for EKS clusters (e.g., 5.10.210-201.852.amzn2.aarch64). AWS does not include that in the AMIs, since it takes a lot of space. Does anyone ...
user23864381's user avatar
2 votes
0 answers
37 views

Assembly, gdb duplicate names

Let's assume we have defined a global non-initialized variable named f in C code. Considering that, we would make label named f in the Assembly representation and put it in the .bss section. The ...
kesetovic's user avatar
  • 311
2 votes
1 answer
95 views

How to resolve the shared library of a function in core file, using GDB - when no symbols are loaded?

I have a core file in which not all shared library symbols are available, the backtrace looks like this: Thread 1 (Thread 0x7f63f0cfe700 (LWP 16501)): #0 0x00007f63f04b19de in ?? () #1 ...
joepol's user avatar
  • 804
2 votes
1 answer
107 views

Provide symbols to the VisualStudio debugger for custom code

Provided one generates custom JIT-generated code (x64) in C++ on Windows (using VirtualAlloc with MEM_EXECUTE), is there any way to provide some symbols for the Visual Studio Debugger, to get it to ...
Juliean's user avatar
  • 1,117
1 vote
1 answer
153 views

C# DLL (using 3F DLLExport for exporting functions) not debuggable in Delphi application

I'm trying to export functions from a C# Class Library (.Net Framework 4.8) to later use it in a Delphi project. C# part: using System; using System.Collections.Generic; using System.Linq; using ...
White's user avatar
  • 305
0 votes
1 answer
79 views

Display source code with disassembly when path has changed

We have some static libraries for a know arch (e.g. powerpc) in which we need to display source code with disassembly to perform some asm review activities. However, the binaries were cross-compiled ...
JoseleMG's user avatar
  • 302
0 votes
0 answers
296 views

dsumutil could not find object file symbol for symbol

I merge two object file to one with command: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld -arch arm64 -platform_version macos 13.0.0 14.0 -O3 -r first.o ...
Fesss's user avatar
  • 35

15 30 50 per page
1
2 3 4 5
59