On Wednesday, 18 October 2017 at 07:57:25 UTC, Dmitry wrote:
On Tuesday, 17 October 2017 at 10:09:12 UTC, Dmitry wrote:
On Tuesday, 17 October 2017 at 08:38:20 UTC, Arjan wrote:
Before this will work, one must install the Microsoft C/C++
Addin i.e. ms-vscode.cpptools.
Start debugging and selec
On Tuesday, 17 October 2017 at 10:09:12 UTC, Dmitry wrote:
On Tuesday, 17 October 2017 at 08:38:20 UTC, Arjan wrote:
Before this will work, one must install the Microsoft C/C++
Addin i.e. ms-vscode.cpptools.
Start debugging and select the C++ debugger.
Yep
https://forum.dlang.org/post/xwsvxp
On Tuesday, 17 October 2017 at 08:38:20 UTC, Arjan wrote:
Before this will work, one must install the Microsoft C/C++
Addin i.e. ms-vscode.cpptools.
Start debugging and select the C++ debugger.
Yep
https://forum.dlang.org/post/xwsvxphjtzgwjyrgd...@forum.dlang.org
On Tuesday, 17 October 2017 at 08:43:33 UTC, Domain wrote:
On Tuesday, 17 October 2017 at 03:10:52 UTC, Dmitry wrote:
On Tuesday, 17 October 2017 at 02:32:49 UTC, Domain wrote:
Can you share your tasks.json and launch.json?
tasks.json - I don't have this file.
launch.json:
{
"version": "0
On Tuesday, 17 October 2017 at 03:10:52 UTC, Dmitry wrote:
On Tuesday, 17 October 2017 at 02:32:49 UTC, Domain wrote:
Can you share your tasks.json and launch.json?
tasks.json - I don't have this file.
launch.json:
{
"version": "0.2.0",
"configurations": [
{
"name"
On Tuesday, 17 October 2017 at 03:10:52 UTC, Dmitry wrote:
On Tuesday, 17 October 2017 at 02:32:49 UTC, Domain wrote:
Can you share your tasks.json and launch.json?
tasks.json - I don't have this file.
launch.json:
{
"version": "0.2.0",
"configurations": [
{
"name"
On Tuesday, 17 October 2017 at 02:32:49 UTC, Domain wrote:
Can you share your tasks.json and launch.json?
tasks.json - I don't have this file.
launch.json:
{
"version": "0.2.0",
"configurations": [
{
"name": "(Windows) Launch",
"type": "cppvsdbg",
On Sunday, 15 October 2017 at 13:54:49 UTC, Dmitry wrote:
On Friday, 13 October 2017 at 12:55:09 UTC, piotrklos wrote:
Has anyone been able to debug in VS code on Windows? What am I
doing wrong?
Yep, it work for me.
How do you start debugging?
I noticed that the bottom button (small bug) at st
On Friday, 13 October 2017 at 12:55:09 UTC, piotrklos wrote:
Has anyone been able to debug in VS code on Windows? What am I
doing wrong?
Yep, it work for me.
How do you start debugging?
I noticed that the bottom button (small bug) at status bar
doesn't work for me. But when I use Debug → Start
On Saturday, 14 October 2017 at 19:01:52 UTC, piotrklos wrote:
On Saturday, 14 October 2017 at 13:12:51 UTC, Jerry wrote:
On Friday, 13 October 2017 at 12:55:09 UTC, piotrklos wrote:
(...)
If you use generate a 32-bit binary using DMD, it generates it
in a format that the C/C++ extension doe
On Saturday, 14 October 2017 at 19:01:52 UTC, piotrklos wrote:
On Saturday, 14 October 2017 at 13:12:51 UTC, Jerry wrote:
On Friday, 13 October 2017 at 12:55:09 UTC, piotrklos wrote:
(...)
If you use generate a 32-bit binary using DMD, it generates it
in a format that the C/C++ extension doe
On Saturday, 14 October 2017 at 13:12:51 UTC, Jerry wrote:
On Friday, 13 October 2017 at 12:55:09 UTC, piotrklos wrote:
(...)
If you use generate a 32-bit binary using DMD, it generates it
in a format that the C/C++ extension doesn't understand. You
need to compile -m32mscoff or -m64, and yo
On Saturday, 14 October 2017 at 14:23:34 UTC, piotrklos wrote:
On Saturday, 14 October 2017 at 13:20:27 UTC, Jerry wrote:
On Saturday, 14 October 2017 at 10:15:53 UTC, evilrat wrote:
webfreak's NativeDebug extension to be able to click to set
breakpoint on lines(only for that).
You can just
On Saturday, 14 October 2017 at 13:20:27 UTC, Jerry wrote:
On Saturday, 14 October 2017 at 10:15:53 UTC, evilrat wrote:
webfreak's NativeDebug extension to be able to click to set
breakpoint on lines(only for that).
You can just use VS Code setting, put the following into your
settings.json
On Saturday, 14 October 2017 at 10:15:53 UTC, evilrat wrote:
webfreak's NativeDebug extension to be able to click to set
breakpoint on lines(only for that).
You can just use VS Code setting, put the following into your
settings.json:
"debug.allowBreakpointsEverywhere": true
On Friday, 13 October 2017 at 12:55:09 UTC, piotrklos wrote:
I have windows 10, VS Code with code-d and C/C++ language
extensions. I try to debug but it doesn't work. In particular,
the debugging doesn't stop on breakpoints. It exits
immediately. I recompile with -m64 and -g. I use dub to build
On Saturday, 14 October 2017 at 07:40:31 UTC, piotrklos wrote:
On Friday, 13 October 2017 at 17:04:00 UTC, kerdemdemir wrote:
On Friday, 13 October 2017 at 12:55:09 UTC, piotrklos wrote:
(...)
I am using VisualD(https://github.com/dlang/visuald/releases)
with vs2015 community version(free) a
On Friday, 13 October 2017 at 17:04:00 UTC, kerdemdemir wrote:
On Friday, 13 October 2017 at 12:55:09 UTC, piotrklos wrote:
(...)
I am using VisualD(https://github.com/dlang/visuald/releases)
with vs2015 community version(free) and I can debug. I highly
recommend it if you haven't tried yet.
On Friday, 13 October 2017 at 12:55:09 UTC, piotrklos wrote:
I have windows 10, VS Code with code-d and C/C++ language
extensions. I try to debug but it doesn't work. In particular,
the debugging doesn't stop on breakpoints. It exits
immediately. I recompile with -m64 and -g. I use dub to build
I have windows 10, VS Code with code-d and C/C++ language
extensions. I try to debug but it doesn't work. In particular,
the debugging doesn't stop on breakpoints. It exits immediately.
I recompile with -m64 and -g. I use dub to build the project. I
use unit-threaded and I'm trying to debug a u
20 matches
Mail list logo