debug-symbols

TeamCity symbol server not serving symbols

你说的曾经没有我的故事 提交于 2019-12-08 13:59:28
I'm trying to implement the TeamCity Symbol Server for my internal NuGet packages, however the symbols are not loading. I'm following the instructions as per this blog which is standard advice for symbol server The TeamCity Symbol Server plugin page showed the url to use was http://ourserver/app/symbols/ The fix was to drop the trailing slash http://ourserver/app/symbols Hitting that URL gives a 404 but that is the format that works for Visual Studio 2012 and when trying to verify the symbols via symchk.exe eg: symchk /r mylibrary.dll /s SRV*http://outserver.acp.net/app/symbols Using that URL

How do you synchronize updates to a Windows symbol store? [duplicate]

為{幸葍}努か 提交于 2019-12-08 12:50:43
问题 This question already has answers here : Serialize execution of symstore via Powershell or BATCH (3 answers) Closed 2 years ago . I'm considering to set up a symbol store for our team and extend our packaging infrastructure so that debug symbols automatically get added to the store. The idea was that once a build is finished, we run symstore on the build directory and have it merge all the .pdb files into the symbol store. In principle, this appears to be fairly straightforward to do but

TeamCity symbol server not serving symbols

↘锁芯ラ 提交于 2019-12-08 05:32:13
问题 I'm trying to implement the TeamCity Symbol Server for my internal NuGet packages, however the symbols are not loading. I'm following the instructions as per this blog which is standard advice for symbol server 回答1: The TeamCity Symbol Server plugin page showed the url to use was http://ourserver/app/symbols/ The fix was to drop the trailing slash http://ourserver/app/symbols Hitting that URL gives a 404 but that is the format that works for Visual Studio 2012 and when trying to verify the

Overhead of enabling JVMTI *capability* to query local variables

走远了吗. 提交于 2019-12-08 04:11:35
问题 I'm working on a simple dynamic language that runs on the JVM. One of the required capabilities is this: only when an exception is thrown , I need to be able to query the local variables for all frames in the call stack at the time the exception is thrown. This capability is not available in standard Java or reflection. Thus I'm looking at the following idea: Write a simple JVMTI shared object in C When an exception gets thrown in Java-land, trigger a JVMTI function Code in the JVMTI lib

Export Symbols of Static Library When Used for iOS App Creation

雨燕双飞 提交于 2019-12-07 16:23:18
问题 Some code packed up in a static library by me (using libtool ) should be used in another project to build an iOS application. To make crash analysation possible, the .dSYM of the app should also contain the symbols of my static library. I assume I have to somehow either include the symbols in the library proberly or have to pass some symbols file to the build step that creates the .dSYM. Is this possible? I am a bit overwhelmed by all the steps involved in the process of creating the .dSYM.

Using DebugDiag with an in-house application

坚强是说给别人听的谎言 提交于 2019-12-07 13:55:47
问题 How do I use DebugDiag with an in-house application? What do I need to do (include obj file, link to an assembly, etc) 回答1: Debugdiag Analysis requires symbols (By default the Microsoft public symbol server is already configured with Debugdiag). All downloaded Microsoft public symbols will be places in “c:\symcache” If you have an in-house app, and you have symbols, then you can just add your PDB files (only) to the symbol path: “c:\symcache” During debugging, if you are setting breakpoints,

Visual Studio Code not loading symbols on OS X

陌路散爱 提交于 2019-12-07 00:35:56
问题 I am trying to set up a web api using ASP.NET Core on OS X. I have set up my environment correctly (I think) and I'm able to build and run my application using dotnet build from the terminal, and I'm able to start debugging from Visual Studio Code with breakpoints working as expected. My problem is that I receive an error when trying to query my Sqlite database using EF core. EF core is not really important here, because when I am debugging and trying to find out what the error is, I don't

GCC - generate absolute paths for #includes in debug symbols

雨燕双飞 提交于 2019-12-06 16:31:50
OS is Windows, GCC is 4.7.2, GDB is 7.3. I have a .c file in the C:/project/src/ folder with an include: #include "../inc/header.h" After the compilation I have a relative path in the debug symbols: > objdump -WL obj.o | grep header.h C:/project/src/../inc/header.h ... Yet I want it to be C:/project/inc/header.h, because setting BPs in gdb fail for me if I use absolute paths when issuing the set breakpoint command. This situation is artificial, but due to the environmental conditions the only solution to my issue will be either absolute paths generation in the debug symbols or teaching GDB to

How to symbolicate Electron crash log

断了今生、忘了曾经 提交于 2019-12-06 14:31:21
问题 Electron version: electron v1.6.7 Operating system: Mac OS X 10.12.1 app crashed when start Termination Signal: Segmentation fault: 11 Termination Reason: Namespace SIGNAL, Code 0xb Terminating Process: exc handler [0] Thread 0 Crashed:: CrBrowserMain Dispatch queue: com.apple.main-thread 0 com.github.electron.framework 0x000000010e73d3f2 0x10e619000 + 1197042 1 com.github.electron.framework 0x000000010e7145e5 0x10e619000 + 1029605 2 com.github.electron.framework 0x000000010e71457d

Visual Studio: Debugging Chrome with Source?

被刻印的时光 ゝ 提交于 2019-12-06 14:07:57
问题 I've managed to set up the download symbols for Google Chrome (Dev channel) in Visual Studio. This is helpful for understanding the disassembly , but when I step into a function, I want to see the C++ source code. (It opens up a dialog, letting me find the source file, which I of course don't have.) Is there a server from which I can have Visual Studio automatically find the matching version of the C++ source file? 回答1: As per this article, you can configure VS or windbg to download symbols