Skip to main content
Filter by
Sorted by
Tagged with
2 votes
2 answers
183 views

I want to add a breakpoint in the line system("/path/to/world") in VS Code for debugging the /path/to/world program with gdb. Here is the source code of /path/to/hello.c: int main(int argc, ...
stackbiz's user avatar
  • 1,916
1 vote
2 answers
75 views

I'm making a simple 'To Do List' app In Flutter, When I press the 'floatingActionButton' it's supposed to to show a pop-up where the user can input a new task, But nothing is displayed when the button ...
buzzbuzz20xx's user avatar
3 votes
1 answer
128 views

I'm working with COM objects, which means I need to debug SAFEARRAY objects. It looks as follows in the watch-window: receivedData 0x007cc980 safearray of UI1, [rank]=1 _variant_t safearray ...
Dominique's user avatar
  • 17.6k
0 votes
0 answers
121 views

Depreciation_DM = model.constant("Depreciation_DM") Depreciation_DM.equation = 0.0708 DMPIncRate = model.constant("DMPIncRate") DMPIncRate.equation = 0.0284 DMPInc = model.flow(&...
Teguh Juang Sinaga's user avatar
0 votes
0 answers
135 views

I have two separate c++ CMake projects, a library and an application. Both are build using in Debug mode with set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -g3 -O0 -fno-inline -fno-omit-...
spraff's user avatar
  • 33.7k
-4 votes
1 answer
63 views

I'm doing a mini project for a coding bootcamp and I'm trying to toggle elements. I have a form on my page that I want to make invisible when you submit it, so that the rest of the page shows. It isn'...
AirenMarie's user avatar
2 votes
1 answer
85 views

I wrote a simple example program as below and tried to debug using gdb. #include <stdio.h> #include <stdlib.h> #include <string.h> #include <stdint.h> int function1(void) { ...
Cprogrammer's user avatar
-3 votes
0 answers
68 views

I am developing a relatively large application using Qt, SystemC, and QCustomPlot libraries. When debugging, it takes a long time for those libraries to load. How can I combine (at CMake level) my own ...
katang's user avatar
  • 2,826
1 vote
1 answer
56 views

I installed NVIDIA Nsight Visual Studio Edition 2025.01 in Visual Studio 2022. I want to debug code, but I can't debug with step over(F10), The debugger always stops at a location without a breakpoint....
Imagination Youth's user avatar
0 votes
1 answer
45 views

Is there a way I can set the dotnet version to use for the debugger. I am using the one (debugger) that comes with C# Dev Kit. I currently have dotnet 8 and dotnet 2.2 installed but the debugger ...
Ndifreke James Okpo's user avatar
0 votes
0 answers
42 views

I have previously used lldb to print structures like NSRect or NSSize of 3rd party processes without issues. But I am struggling in modern versions of Xcode to inspect them. Namely since the ...
Marek H's user avatar
  • 5,652
-3 votes
0 answers
44 views

I am using the new AttributedString in Swift 26 with a TextEditor in dark mode to track selections for a qualitative data analysis tool. ISSUE: In dark mode, the highlight colour inherited from system ...
Bhorda's user avatar
  • 15
0 votes
0 answers
44 views

When I try to check any UIImage, it doesn't show. I can see MTLTexture, but not UIImage. I can see images if I go to the older branch, but not the current branch that I am working on. How to fix this? ...
sabertooth's user avatar
0 votes
0 answers
18 views

I am having issues with fetch() statements in my service worker in a progressive web app installed on my Android phone (with Chrome). Ordinarily this would be easy to debug by sending messages to ...
Colin R. Turner's user avatar
0 votes
0 answers
25 views

OS: Ubuntu 24.04.2 & Windows 10 CubeProgrammer Version: 2.20.0 Board: STM32F407G-DISC1 Firmware Version: V15J63M63 I am having intermittent connectivity issues with my discovery board and the ...
MPsyko's user avatar
  • 1
0 votes
0 answers
27 views

I am following the instructions described in https://www.erlang.org/doc/apps/debugger/debugger_chapter to start the debugger. However, after debugger:start()., I only get the message Command is taking ...
GreenOwl's user avatar