Re: Debugging on Windows

2025-05-13 Thread Justin Allen Parrott via Digitalmars-d-learn
On Tuesday, 13 May 2025 at 14:19:41 UTC, Python wrote: On Monday, 12 May 2025 at 07:33:34 UTC, Justin Allen Parrott wrote: On Wednesday, 16 April 2025 at 20:08:00 UTC, Arokh Slade wrote: Any tips? Debuggers phased out in the nineties Press F12 in your browser. You'll be surprised. I am not

Re: Debugging on Windows

2025-05-13 Thread Python via Digitalmars-d-learn
On Monday, 12 May 2025 at 07:33:34 UTC, Justin Allen Parrott wrote: On Wednesday, 16 April 2025 at 20:08:00 UTC, Arokh Slade wrote: Any tips? Debuggers phased out in the nineties Press F12 in your browser. You'll be surprised.

Re: Debugging on Windows

2025-05-12 Thread Justin Allen Parrott via Digitalmars-d-learn
On Wednesday, 16 April 2025 at 20:08:00 UTC, Arokh Slade wrote: Any tips? Debuggers phased out in the nineties

Re: Debugging on Windows

2025-05-06 Thread Arokh Slade via Digitalmars-d-learn
On Friday, 25 April 2025 at 21:13:24 UTC, Imperatorn wrote: On Wednesday, 16 April 2025 at 20:08:00 UTC, Arokh Slade wrote: Hello, I'm trying to get debugging on windows 10 to work. d_test.d ```D void main() { int i; } ``` I compile with: dmd -g -gf -m64 .\d_test.d I load the

Re: Debugging on Windows

2025-04-25 Thread Imperatorn via Digitalmars-d-learn
On Wednesday, 16 April 2025 at 20:08:00 UTC, Arokh Slade wrote: Hello, I'm trying to get debugging on windows 10 to work. d_test.d ```D void main() { int i; } ``` I compile with: dmd -g -gf -m64 .\d_test.d I load the msvc debugger with devenv /DebugExe .\d_test.exe latest vi

Re: Debugging on Windows

2025-04-20 Thread Arokh Slade via Digitalmars-d-learn
On Thursday, 17 April 2025 at 14:45:32 UTC, Python wrote: On Wednesday, 16 April 2025 at 20:08:00 UTC, Arokh Slade wrote: Hello, I'm trying to get debugging on windows 10 to work. d_test.d ```D void main() { int i; } ``` I compile with: dmd -g -gf -m64 .\d_test.d I load the

Re: Debugging on Windows

2025-04-19 Thread Arokh Slade via Digitalmars-d-learn
On Friday, 18 April 2025 at 02:21:23 UTC, Mike Shah wrote: On Wednesday, 16 April 2025 at 20:08:00 UTC, Arokh Slade wrote: Hello, I'm trying to get debugging on windows 10 to work. d_test.d ```D void main() { int i; } ``` I compile with: dmd -g -gf -m64 .\d_test.d I load the

Re: Debugging on Windows

2025-04-18 Thread Mike Shah via Digitalmars-d-learn
On Wednesday, 16 April 2025 at 20:08:00 UTC, Arokh Slade wrote: Hello, I'm trying to get debugging on windows 10 to work. d_test.d ```D void main() { int i; } ``` I compile with: dmd -g -gf -m64 .\d_test.d I load the msvc debugger with devenv /DebugExe .\d_test.exe latest vi

Re: Debugging on Windows

2025-04-18 Thread Python via Digitalmars-d-learn
On Wednesday, 16 April 2025 at 20:08:00 UTC, Arokh Slade wrote: Hello, I'm trying to get debugging on windows 10 to work. d_test.d ```D void main() { int i; } ``` I compile with: dmd -g -gf -m64 .\d_test.d I load the msvc debugger with devenv /DebugExe .\d_test.exe latest vi

Debugging on Windows

2025-04-16 Thread Arokh Slade via Digitalmars-d-learn
Hello, I'm trying to get debugging on windows 10 to work. d_test.d ```D void main() { int i; } ``` I compile with: dmd -g -gf -m64 .\d_test.d I load the msvc debugger with devenv /DebugExe .\d_test.exe latest visualD installed. I can step into the program, but when I add `i` t

Re: Debugging on Windows

2018-02-11 Thread JN via Digitalmars-d-learn
On Friday, 9 February 2018 at 19:02:14 UTC, Benjamin Thaut wrote: On Thursday, 8 February 2018 at 21:09:33 UTC, JN wrote: Hi, is there any way to debug binaries on Windows? I'd at least like to know which line of code made it crash. If it's D code, I get a call trace usually, but if it's a ca

Re: Debugging on Windows

2018-02-11 Thread Cauterite via Digitalmars-d-learn
On Thursday, 8 February 2018 at 21:09:33 UTC, JN wrote: Hi, is there any way to debug binaries on Windows? I'd at least like to know which line of code made it crash. If it's D code, I get a call trace usually, but if it's a call to a C library, I get a crash and that's it. I am using VSCode

Re: Debugging on Windows

2018-02-09 Thread Benjamin Thaut via Digitalmars-d-learn
On Thursday, 8 February 2018 at 21:09:33 UTC, JN wrote: Hi, is there any way to debug binaries on Windows? I'd at least like to know which line of code made it crash. If it's D code, I get a call trace usually, but if it's a call to a C library, I get a crash and that's it. I am using VSCode

Re: Debugging on Windows

2018-02-09 Thread Rene Zwanenburg via Digitalmars-d-learn
On Thursday, 8 February 2018 at 21:09:33 UTC, JN wrote: Hi, is there any way to debug binaries on Windows? I'd at least like to know which line of code made it crash. If it's D code, I get a call trace usually, but if it's a call to a C library, I get a crash and that's it. I am using VSCode

Debugging on Windows

2018-02-08 Thread JN via Digitalmars-d-learn
Hi, is there any way to debug binaries on Windows? I'd at least like to know which line of code made it crash. If it's D code, I get a call trace usually, but if it's a call to a C library, I get a crash and that's it. I am using VSCode and I'd prefer to debug in it if possible, but using oth