debug-symbols Questions

4

I have started publishing my app to the Android play store and need to upload a symbols.zip file to de-obfuscate my crash reports. When I build my app in Unity 2020.1.0f1 ( had the same problem in ...
Chlamys asked 23/8, 2020 at 7:57

4

Solved

The project I'm compiling uses CMake, which loves absolute pathnames. When I compile with debugging information enabled, gcc puts those long names into .debug_str sections, which is bad for debugg...
Ernaldus asked 7/3, 2012 at 18:35

1

SYMSRV: http://referencesource.microsoft.com/symbols/System.Web.pdb/E6EBD6B61CEA407591438CC4E48036891/System.Web.pdb not found http://referencesource.microsoft.com/symbols: Symbols not found on sy...
Deanndeanna asked 1/12, 2014 at 19:43

12

Solved

I've got a binary installed on my system, and would like to look at the disassembly of a given function. Preferrably using objdump, but other solutions would be acceptable as well. From this quest...
Deputation asked 31/3, 2014 at 18:22

1

Intro. For my compilers course I have to translate some language to assembler. Now my code has a segfault, and I have hard time debugging it. Having an ability to watch variables would simplify the...
Condolent asked 10/11, 2018 at 19:29

2

Solved

I accidentally enabled downloading open source code. I've disabled the "all modules" option in Tools > Options > Debugging > Symbols. Now I want to know how to remove the symbols...
Decommission asked 16/6, 2022 at 8:47

2

I've been getting a bunch of crash logs for my (largely c++) app on iOS. My problem is I can't seem to ever symbolicate these crash reports properly. What is the "proper" setting for stripping deb...
Bushel asked 17/4, 2015 at 17:23

4

My app tries to deserialize data sent by client and it fails with the following error: Exception thrown: 'System.Runtime.Serialization.SerializationException' in mscorlib.dll Additional info...
Paxwax asked 29/10, 2015 at 15:57

18

I'm working on a ColdFusion project for a while now, and Visual Studio started to behave strange for me at least. I observed that when I started debugging, it built the project, it started the dep...
Tarkany asked 31/7, 2010 at 10:34

2

Solved

I used to download Offline symbol packages (Debug symbol MSIs) and use only them since it's we don't need to wait for slow downloading as we go in debugging. However this feature is no longer exist...
Koziara asked 4/5, 2018 at 16:18

4

I'm working with a proprietary code base where the owner would like users to get useful stack traces but not be able to view the source code. Generating Debian dbg packages with debug symbols but n...
Pore asked 16/1, 2015 at 19:4

10

Solved

I have Visual Studio 2005 set up to use Microsoft's symbol servers. I also have UltraMon installed, which injects a hook DLL into every process. Whenever I start debugging my MFC application, Visua...
Caa asked 15/5, 2009 at 14:53

9

I am trying to integrate a large legacy C++ library with an iOS app. We are able to build and run on device but we are not able to archive the app. Archiving fails with the following error. Comman...
Airdrop asked 31/7, 2012 at 15:2

1

Solved

Stripping debug info in the release profile reduces my crate's binary size by a third (from 1.9 MB to 1.3 MB). This is what I added: [profile.release] strip = true # or strip = "symbols" ...
Mcphail asked 6/9, 2022 at 23:3

2

I have a this Makefile application=<somebinaryname> CXXFLAGS=-g -std=c++14 -Wall -Werror -pedantic LDFLAGS=-g auto: $(application) $(application): main.o aaa.o aab.o aba.o baa.o $(CXX) $(...
Adorne asked 18/10, 2016 at 2:16

8

Solved

I have some compiled libraries on x86 Linux and I want to quickly determine whether they were compiled with debugging symbols.
Gery asked 4/1, 2010 at 13:52

4

Solved

Suddenly my released app crashed while opening just after installing the app from play-store. But problem is that when I am running the code in Android Studio in debug mode app does not crash. Whe...
Convertible asked 12/10, 2017 at 8:21

10

Solved

As you can notice Symbols are been correctly loaded. I just created a view GetCompanies.cshtml using the AddView shortlink But, no matter what I do, I can't debug in the View. What I did so...
Aquiculture asked 12/4, 2011 at 9:19

1

I have published a Flutter app on Play Store that reports crashes from time to time. To build it for release, I used obfuscation as described here with the command: flutter build apk --obfuscate --...
Gorlicki asked 11/1, 2021 at 13:34

1

Solved

Looking for ways to see generated assembler of a specific function in my binary (an .so to be exact), just as I can see similar on Compiler Explorer, I found How to disassemble one single function ...
Highkeyed asked 9/3, 2022 at 13:47

17

Solved

OK, this is my own fault, but I can't seem to rescue myself. Whenever I try to step into a class that has fields with assignments calling into .NET code, I get a dialog box that contains the text ...
Egwan asked 24/11, 2008 at 14:44

1

Solved

I am trying to convert a 2 tier symbol store into a 3-tier symbol store using the convertstore.exe tool as described by Microsoft. However, I get error messages which do not tell me much. Depending...
Phototelegraphy asked 10/2, 2022 at 15:31

4

Solved

I am using .NET Core 1.0 and Visual Studio 2015 Update 3 to make a simple Asp.Net Core MVC website. How can I debug my application and "Step Into" the .NET Core source code that is available on G...
Stoa asked 19/7, 2016 at 3:4

7

For most of my projects, I setup an "archive" scheme to archive my project, creating an IPA and DSYM that I can upload to TestFlight. However, I'm working on a more complicated project that has se...
Carnal asked 28/12, 2012 at 21:3

5

Solved

Is there any way to create only symbol table using cmake for gdb ?
Ascus asked 3/11, 2011 at 6:0

© 2022 - 2024 — McMap. All rights reserved.