-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
975 lines (975 loc) · 40 KB
/
package.json
File metadata and controls
975 lines (975 loc) · 40 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
{
"name": "lldb-dap",
"displayName": "LLDB DAP",
"version": "0.4.1",
"publisher": "llvm-vs-code-extensions",
"homepage": "https://lldb.llvm.org",
"description": "Debugging with LLDB in Visual Studio Code",
"license": "Apache 2.0 License with LLVM exceptions",
"repository": {
"type": "git",
"url": "https://github.com/llvm/llvm-project.git",
"directory": "lldb/tools/lldb-dap/"
},
"bugs": {
"url": "https://github.com/llvm/llvm-project/issues"
},
"icon": "llvm-logo.png",
"keywords": [
"C",
"C++",
"LLVM",
"LLDB"
],
"engines": {
"vscode": "^1.90.0"
},
"categories": [
"Debuggers"
],
"dependencies": {
"chokidar": "^4.0.3"
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "^18.19.41",
"@types/tabulator-tables": "^6.2.10",
"@types/vscode": "1.90.0",
"@types/vscode-webview": "^1.57.5",
"@vscode/debugprotocol": "^1.68.0",
"@vscode/test-cli": "^0.0.12",
"@vscode/test-electron": "^2.5.2",
"@vscode/vsce": "^3.2.2",
"esbuild": "^0.25.9",
"mocha": "^10.2.0",
"ovsx": "^0.10.8",
"prettier": "^3.4.2",
"prettier-plugin-curly": "^0.3.1",
"prettier-plugin-organize-imports": "^4.3.0",
"tabulator-tables": "^6.3.1",
"typescript": "^5.7.3"
},
"activationEvents": [
"onDebug",
"onUri"
],
"main": "./out/extension",
"scripts": {
"bundle-extension": "npx tsc -p ./ --noEmit && npx esbuild src/extension.ts --bundle --outfile=out/extension.js --external:vscode --format=cjs --platform=node --target=node22 --minify",
"bundle-symbols-table-view": "npx tsc -p src/webview --noEmit && npx esbuild src/webview/symbols-table-view.ts --bundle --format=iife --outdir=./out/webview",
"bundle-tabulator": "cp node_modules/tabulator-tables/dist/js/tabulator.min.js ./out/webview/ && cp node_modules/tabulator-tables/dist/css/tabulator_midnight.min.css ./out/webview/ && cp node_modules/tabulator-tables/dist/css/tabulator_simple.min.css ./out/webview/",
"bundle-webview": "npm run bundle-symbols-table-view && npm run bundle-tabulator",
"vscode:prepublish": "npm run bundle-webview && npm run bundle-extension",
"watch": "npm run bundle-webview && tsc -watch -p ./",
"format": "npx prettier . --write",
"package": "rm -rf ./out && vsce package --out ./out/lldb-dap.vsix",
"compile": "tsc -p ./",
"publish": "vsce publish",
"publish-ovsx": "ovsx publish",
"pretest": "npm run compile",
"preunittest": "npm run pretest",
"unittest": "mocha --ui tdd ./out/test/unit",
"test": "vscode-test",
"vscode-uninstall": "code --uninstall-extension llvm-vs-code-extensions.lldb-dap",
"vscode-install": "code --install-extension ./out/lldb-dap.vsix"
},
"contributes": {
"languages": [
{
"id": "lldb.disassembly",
"aliases": [
"Disassembly"
],
"extensions": [
".disasm"
]
}
],
"grammars": [
{
"language": "lldb.disassembly",
"scopeName": "source.disassembly",
"path": "./syntaxes/disassembly.json"
}
],
"configuration": [
{
"type": "object",
"title": "Adapter",
"properties": {
"lldb-dap.executable-path": {
"order": 0,
"scope": "machine-overridable",
"type": "string",
"description": "The path to the lldb-dap binary, e.g. /usr/local/bin/lldb-dap"
},
"lldb-dap.log-path": {
"scope": "machine-overridable",
"type": "string",
"description": "The log path for lldb-dap (if any)",
"markdownDeprecationMessage": "Use the `#lldb-dap.logFolder#` setting instead"
},
"lldb-dap.logFolder": {
"order": 0,
"scope": "machine-overridable",
"type": "string",
"markdownDescription": "The folder to persist lldb-dap logs. If no value is provided, logs will be persisted in the [Extension Logs Folder](command:workbench.action.openExtensionLogsFolder)."
},
"lldb-dap.serverMode": {
"order": 0,
"scope": "resource",
"type": "boolean",
"markdownDescription": "Run lldb-dap in server mode.\n\nWhen enabled, lldb-dap will start a background server that will be reused between debug sessions. This allows caching of debug symbols between sessions and improves launch performance.",
"default": false
},
"lldb-dap.connectionTimeout": {
"order": 0,
"scope": "resource",
"type": "number",
"markdownDescription": "When running lldb-dap in server mode, the time in seconds to wait for new connections after the server has started and after all clients have disconnected. Each new connection will reset the timeout. When the timeout is reached, the server will be closed and the process will exit. Specifying non-positive values will cause the server to wait for new connections indefinitely.",
"default": 0
},
"lldb-dap.arguments": {
"scope": "resource",
"type": "array",
"default": [],
"items": {
"type": "string"
},
"description": "The list of additional arguments used to launch the debug adapter executable."
},
"lldb-dap.environment": {
"scope": "resource",
"type": "object",
"default": {},
"description": "The environment of the lldb-dap process.",
"additionalProperties": {
"type": "string"
}
},
"lldb-dap.captureSessionLogs": {
"type": "boolean",
"description": "When enabled, LLDB-DAP session logs will be written to the Extension's log folder if the `lldb-dap.log-path` setting is not explicitly set.",
"default": false
}
}
},
{
"title": "Defaults",
"type": "object",
"properties": {
"lldb-dap.commandEscapePrefix": {
"order": 0,
"type": "string",
"description": "The escape prefix to use for executing regular LLDB commands in the Debug Console, instead of printing variables. Defaults to a back-tick (`). If it's an empty string, then all expression in the Debug Console are treated as regular LLDB commands.",
"default": "`"
},
"lldb-dap.customFrameFormat": {
"order": 0,
"type": "string",
"description": "If non-empty, stack frames will have descriptions generated based on the provided format. See https://lldb.llvm.org/use/formatting.html for an explanation on format strings for frames. If the format string contains errors, an error message will be displayed on the Debug Console and the default frame names will be used. This might come with a performance cost because debug information might need to be processed to generate the description.",
"default": ""
},
"lldb-dap.customThreadFormat": {
"order": 0,
"type": "string",
"description": "If non-empty, threads will have descriptions generated based on the provided format. See https://lldb.llvm.org/use/formatting.html for an explanation on format strings for threads. If the format string contains errors, an error message will be displayed on the Debug Console and the default thread names will be used. This might come with a performance cost because debug information might need to be processed to generate the description.",
"default": ""
},
"lldb-dap.detachOnError": {
"order": 0,
"type": "boolean",
"description": "Detach from the program.",
"default": false
},
"lldb-dap.disableASLR": {
"order": 0,
"type": "boolean",
"description": "Enable or disable Address space layout randomization if the debugger supports it.",
"default": true
},
"lldb-dap.disableSTDIO": {
"order": 0,
"type": "boolean",
"description": "Don't retrieve STDIN, STDOUT and STDERR as the program is running.",
"default": false
},
"lldb-dap.displayExtendedBacktrace": {
"order": 0,
"type": "boolean",
"description": "Enable language specific extended backtraces.",
"default": false
},
"lldb-dap.enableAutoVariableSummaries": {
"order": 0,
"type": "boolean",
"description": "Enable auto generated summaries for variables when no summaries exist for a given type. This feature can cause performance delays in large projects when viewing variables.",
"default": false
},
"lldb-dap.enableSyntheticChildDebugging": {
"order": 0,
"type": "boolean",
"description": "If a variable is displayed using a synthetic children, also display the actual contents of the variable at the end under a [raw] entry. This is useful when creating sythetic child plug-ins as it lets you see the actual contents of the variable.",
"default": false
},
"lldb-dap.timeout": {
"order": 0,
"type": "number",
"description": "The time in seconds to wait for a program to stop at entry point when launching with \"launchCommands\". Defaults to 30 seconds.",
"default": 30
},
"lldb-dap.targetTriple": {
"order": 1,
"type": "string",
"description": "Triplet of the target architecture to override value derived from the program file."
},
"lldb-dap.platformName": {
"order": 1,
"type": "string",
"description": "Name of the execution platform to override value derived from the program file."
},
"lldb-dap.initCommands": {
"order": 2,
"type": "array",
"items": {
"type": "string"
},
"description": "Initialization commands executed upon debugger startup.",
"default": []
},
"lldb-dap.preRunCommands": {
"order": 3,
"type": "array",
"items": {
"type": "string"
},
"description": "Commands executed just before the program is launched.",
"default": []
},
"lldb-dap.postRunCommands": {
"order": 4,
"type": "array",
"items": {
"type": "string"
},
"description": "Commands executed just as soon as the program is successfully launched when it's in a stopped state prior to any automatic continuation.",
"default": []
},
"lldb-dap.stopCommands": {
"order": 5,
"type": "array",
"items": {
"type": "string"
},
"description": "Commands executed each time the program stops.",
"default": []
},
"lldb-dap.exitCommands": {
"order": 6,
"type": "array",
"items": {
"type": "string"
},
"description": "Commands executed when the program exits.",
"default": []
},
"lldb-dap.terminateCommands": {
"order": 7,
"type": "array",
"items": {
"type": "string"
},
"description": "Commands executed when the debugging session ends.",
"default": []
}
}
}
],
"commands": [
{
"command": "lldb-dap.modules.copyProperty",
"title": "Copy Value"
},
{
"command": "lldb-dap.modules.showSymbols",
"title": "Show Module Symbols"
},
{
"category": "lldb-dap",
"command": "lldb-dap.debug.showSymbols",
"title": "Show Symbols of a Module"
}
],
"menus": {
"commandPalette": [
{
"command": "lldb-dap.modules.copyProperty",
"when": "false"
},
{
"command": "lldb-dap.modules.showSymbols",
"when": "false"
},
{
"command": "lldb-dap.debug.showSymbols",
"when": "debuggersAvailable && debugType == 'lldb-dap' && lldb-dap.supportsModuleSymbolsRequest"
}
],
"view/item/context": [
{
"command": "lldb-dap.modules.copyProperty",
"when": "view == lldb-dap.modules && viewItem == property"
},
{
"command": "lldb-dap.modules.showSymbols",
"when": "view == lldb-dap.modules && viewItem == module && lldb-dap.supportsModuleSymbolsRequest"
}
]
},
"breakpoints": [
{
"language": "lldb.disassembly"
},
{
"language": "ada"
},
{
"language": "arm"
},
{
"language": "asm"
},
{
"language": "c"
},
{
"language": "cpp"
},
{
"language": "crystal"
},
{
"language": "d"
},
{
"language": "fortran"
},
{
"language": "fortran-modern"
},
{
"language": "nim"
},
{
"language": "objective-c"
},
{
"language": "objective-cpp"
},
{
"language": "objectpascal"
},
{
"language": "pascal"
},
{
"language": "rust"
},
{
"language": "swift"
}
],
"debuggers": [
{
"type": "lldb-dap",
"label": "LLDB DAP Debugger",
"languages": [
"ada",
"arm",
"c",
"cpp",
"crystal",
"d",
"fortran",
"fortran-modern",
"nim",
"objective-c",
"objective-cpp",
"objectpascal",
"pascal",
"rust",
"swift"
],
"configurationAttributes": {
"launch": {
"required": [
"program"
],
"properties": {
"debugAdapterHostname": {
"type": "string",
"markdownDescription": "The hostname that an existing lldb-dap executable is listening on."
},
"debugAdapterPort": {
"type": "number",
"markdownDescription": "The port that an existing lldb-dap executable is listening on."
},
"debugAdapterExecutable": {
"type": "string",
"markdownDescription": "The absolute path to the LLDB debug adapter executable to use. Overrides any user or workspace settings."
},
"debugAdapterArgs": {
"type": "array",
"items": {
"type": "string"
},
"markdownDescription": "The list of additional arguments used to launch the debug adapter executable. Overrides any user or workspace settings."
},
"debugAdapterEnv": {
"anyOf": [
{
"type": "object",
"markdownDescription": "Additional environment variables to set when launching the debug adapter executable. For example `{ \"FOO\": \"1\" }`",
"patternProperties": {
".*": {
"type": "string"
}
},
"default": {}
},
{
"type": "array",
"markdownDescription": "Additional environment variables to set when launching the debug adapter executable. For example `[\"FOO=1\", \"BAR\"]`",
"items": {
"type": "string",
"pattern": "^\\w+(=.*)?$"
},
"default": []
}
]
},
"program": {
"type": "string",
"description": "Path to the program to debug."
},
"args": {
"type": [
"array"
],
"items": {
"type": "string"
},
"description": "Program arguments.",
"default": []
},
"cwd": {
"type": "string",
"description": "Program working directory.",
"default": "${workspaceFolder}"
},
"env": {
"anyOf": [
{
"type": "object",
"description": "Additional environment variables to set when launching the program. E.g. `{ \"FOO\": \"1\" }`",
"patternProperties": {
".*": {
"type": "string"
}
},
"default": {}
},
{
"type": "array",
"description": "Additional environment variables to set when launching the program. E.g. `[\"FOO=1\", \"BAR\"]`",
"items": {
"type": "string",
"pattern": "^((\\w+=.*)|^\\w+)$"
},
"default": []
}
]
},
"stopOnEntry": {
"type": "boolean",
"description": "Automatically stop after launch.",
"default": false
},
"disableASLR": {
"type": "boolean",
"description": "Enable or disable Address space layout randomization if the debugger supports it.",
"default": true
},
"disableSTDIO": {
"type": "boolean",
"description": "Don't retrieve STDIN, STDOUT and STDERR as the program is running.",
"default": false
},
"shellExpandArguments": {
"type": "boolean",
"description": "Expand program arguments as a shell would without actually launching the program in a shell.",
"default": false
},
"detachOnError": {
"type": "boolean",
"description": "Detach from the program.",
"default": false
},
"sourcePath": {
"type": "string",
"description": "Specify a source path to remap \"./\" to allow full paths to be used when setting breakpoints in binaries that have relative source paths."
},
"sourceMap": {
"anyOf": [
{
"type": "object",
"description": "Specify an object of path remappings; each entry has a key containing the source path and a value containing the destination path. E.g `{ \"/the/source/path\": \"/the/destination/path\" }`. Overrides sourcePath.",
"patternProperties": {
".*": {
"type": "string"
}
},
"default": {}
},
{
"type": "array",
"description": "Specify an array of path remappings; each element must itself be a two element array containing a source and destination path name. Overrides sourcePath.",
"items": {
"type": "array",
"minItems": 2,
"maxItems": 2,
"items": {
"type": "string"
}
},
"default": []
}
]
},
"debuggerRoot": {
"type": "string",
"description": "Specify a working directory to set the debug adapter to so relative object files can be located."
},
"targetTriple": {
"type": "string",
"description": "Triplet of the target architecture to override value derived from the program file."
},
"platformName": {
"type": "string",
"description": "Name of the execution platform to override value derived from the program file."
},
"initCommands": {
"type": "array",
"items": {
"type": "string"
},
"description": "Initialization commands executed upon debugger startup.",
"default": []
},
"preRunCommands": {
"type": "array",
"items": {
"type": "string"
},
"description": "Commands executed just before the program is launched.",
"default": []
},
"postRunCommands": {
"type": "array",
"items": {
"type": "string"
},
"description": "Commands executed just as soon as the program is successfully launched when it's in a stopped state prior to any automatic continuation.",
"default": []
},
"launchCommands": {
"type": "array",
"items": {
"type": "string"
},
"description": "Custom commands that are executed instead of launching a process. A target will be created with the launch arguments prior to executing these commands. The commands may optionally create a new target and must perform a launch. A valid process must exist after these commands complete or the \"launch\" will fail. Launch the process with \"process launch -s\" to make the process to at the entry point since lldb-dap will auto resume if necessary.",
"default": []
},
"stopCommands": {
"type": "array",
"items": {
"type": "string"
},
"description": "Commands executed each time the program stops.",
"default": []
},
"exitCommands": {
"type": "array",
"items": {
"type": "string"
},
"description": "Commands executed when the program exits.",
"default": []
},
"terminateCommands": {
"type": "array",
"items": {
"type": "string"
},
"description": "Commands executed when the debugging session ends.",
"default": []
},
"runInTerminal": {
"type": "boolean",
"description": "Launch the program inside an integrated terminal in the IDE. Useful for debugging interactive command line programs",
"default": false,
"deprecationMessage": "Attribute 'runInTerminal' is deprecated, use 'console' instead."
},
"console": {
"type": "string",
"enum": [
"internalConsole",
"integratedTerminal",
"externalTerminal"
],
"enumDescriptions": [
"Use Debug Console for output (input is not supported).",
"Launch the program inside an integrated terminal in the IDE.",
"Launch the program inside an external terminal window."
],
"description": "Specify where to launch the program: internal console, integrated terminal or external terminal.",
"default": "internalConsole"
},
"stdio": {
"type": "array",
"items": {
"type": [
"string",
"null"
]
},
"description": "Redirects the debuggee's standard I/O (stdin, stdout, stderr) to a file path, named pipe, or TTY device.\nUse null to redirect a stream to the default debug terminal.\nThe first three values map to stdin, stdout, and stderr respectively.\nAdditional values create extra file descriptors (4, 5, etc.).\n\nExample: stdio: [null, \"./output_file\"], the debuggee uses the default terminal for stdin and stderr, but writes stdout to `./output_file`.\nAdded in version 22.0.",
"default": []
},
"timeout": {
"type": "number",
"description": "The time in seconds to wait for a program to stop at entry point when launching with \"launchCommands\". Defaults to 30 seconds."
},
"enableAutoVariableSummaries": {
"type": "boolean",
"description": "Enable auto generated summaries for variables when no summaries exist for a given type. This feature can cause performance delays in large projects when viewing variables.",
"default": false
},
"displayExtendedBacktrace": {
"type": "boolean",
"description": "Enable language specific extended backtraces.",
"default": false
},
"enableSyntheticChildDebugging": {
"type": "boolean",
"description": "If a variable is displayed using a synthetic children, also display the actual contents of the variable at the end under a [raw] entry. This is useful when creating sythetic child plug-ins as it lets you see the actual contents of the variable.",
"default": false
},
"commandEscapePrefix": {
"type": "string",
"description": "The escape prefix to use for executing regular LLDB commands in the Debug Console, instead of printing variables. Defaults to a back-tick (`). If it's an empty string, then all expression in the Debug Console are treated as regular LLDB commands.",
"default": "`"
},
"customFrameFormat": {
"type": "string",
"description": "If non-empty, stack frames will have descriptions generated based on the provided format. See https://lldb.llvm.org/use/formatting.html for an explanation on format strings for frames. If the format string contains errors, an error message will be displayed on the Debug Console and the default frame names will be used. This might come with a performance cost because debug information might need to be processed to generate the description.",
"default": ""
},
"customThreadFormat": {
"type": "string",
"description": "If non-empty, threads will have descriptions generated based on the provided format. See https://lldb.llvm.org/use/formatting.html for an explanation on format strings for threads. If the format string contains errors, an error message will be displayed on the Debug Console and the default thread names will be used. This might come with a performance cost because debug information might need to be processed to generate the description.",
"default": ""
}
}
},
"attach": {
"properties": {
"debugAdapterHostname": {
"type": "string",
"markdownDescription": "The hostname that an existing lldb-dap executable is listening on."
},
"debugAdapterPort": {
"type": "number",
"markdownDescription": "The port that an existing lldb-dap executable is listening on."
},
"debugAdapterExecutable": {
"type": "string",
"markdownDescription": "The absolute path to the LLDB debug adapter executable to use. Overrides any user or workspace settings."
},
"debugAdapterArgs": {
"type": "array",
"items": {
"type": "string"
},
"markdownDescription": "The list of additional arguments used to launch the debug adapter executable. Overrides any user or workspace settings."
},
"debugAdapterEnv": {
"anyOf": [
{
"type": "object",
"markdownDescription": "Additional environment variables to set when launching the debug adapter executable. For example `{ \"FOO\": \"1\" }`",
"patternProperties": {
".*": {
"type": "string"
}
},
"default": {}
},
{
"type": "array",
"markdownDescription": "Additional environment variables to set when launching the debug adapter executable. For example `[\"FOO=1\", \"BAR\"]`",
"items": {
"type": "string",
"pattern": "^\\w+(=.*)?$"
},
"default": []
}
]
},
"program": {
"type": "string",
"description": "Path to the program to attach to."
},
"pid": {
"type": "number",
"description": "System process ID to attach to."
},
"waitFor": {
"type": "boolean",
"description": "If set to true, then wait for the process to launch by looking for a process with a basename that matches `program`. No process ID needs to be specified when using this flag.",
"default": true
},
"stopOnEntry": {
"type": "boolean",
"description": "Automatically stop after attach.",
"default": false
},
"sourcePath": {
"type": "string",
"description": "Specify a source path to remap \"./\" to allow full paths to be used when setting breakpoints in binaries that have relative source paths."
},
"sourceMap": {
"anyOf": [
{
"type": "object",
"description": "Specify an object of path remappings; each entry has a key containing the source path and a value containing the destination path. E.g `{ \"/the/source/path\": \"/the/destination/path\" }`. Overrides sourcePath.",
"patternProperties": {
".*": {
"type": "string"
}
},
"default": {}
},
{
"type": "array",
"description": "Specify an array of path remappings; each element must itself be a two element array containing a source and destination path name. Overrides sourcePath.",
"items": {
"type": "array",
"minItems": 2,
"maxItems": 2,
"items": {
"type": "string"
}
},
"default": []
}
]
},
"debuggerRoot": {
"type": "string",
"description": "Specify a working directory to set the debug adapter to so relative object files can be located."
},
"targetTriple": {
"type": "string",
"description": "Triplet of the target architecture to override value derived from the program file."
},
"platformName": {
"type": "string",
"description": "Name of the execution platform to override value derived from the program file."
},
"attachCommands": {
"type": "array",
"items": {
"type": "string"
},
"description": "Custom commands that are executed instead of attaching to a process ID or to a process by name. These commands may optionally create a new target and must perform an attach. A valid process must exist after these commands complete or the \"attach\" will fail.",
"default": []
},
"session": {
"type": "object",
"properties": {
"targetId": {
"type": "number",
"description": "The globally unique target id to attach to. Use when a target is dynamically created."
},
"debuggerId": {
"type": "number",
"description": "ID of an existing debugger instance to use."
},
"additionalProperties": false,
"required": ["targetId", "debuggerId"]
},
"description": "This property is Experimental.\nAttach to an existing debugging session.\nAdded in version 22.0."
},
"initCommands": {
"type": "array",
"items": {
"type": "string"
},
"description": "Initialization commands executed upon debugger startup.",
"default": []
},
"preRunCommands": {
"type": "array",
"items": {
"type": "string"
},
"description": "Commands executed just before the program is attached to.",
"default": []
},
"postRunCommands": {
"type": "array",
"items": {
"type": "string"
},
"description": "Commands executed just as soon as the program is successfully attached when it's in a stopped state prior to any automatic continuation.",
"default": []
},
"stopCommands": {
"type": "array",
"items": {
"type": "string"
},
"description": "Commands executed each time the program stops.",
"default": []
},
"exitCommands": {
"type": "array",
"items": {
"type": "string"
},
"description": "Commands executed when the program exits.",
"default": []
},
"terminateCommands": {
"type": "array",
"items": {
"type": "string"
},
"description": "Commands executed when the debugging session ends.",
"default": []
},
"coreFile": {
"type": "string",
"description": "Path to the core file to debug."
},
"timeout": {
"type": "number",
"description": "The time in seconds to wait for a program to stop when attaching using \"attachCommands\". Defaults to 30 seconds."
},
"gdb-remote-port": {
"type": [
"number",
"string"
],
"description": "TCP/IP port to attach to a remote system. Specifying both pid and port is an error."
},
"gdb-remote-hostname": {
"type": "string",
"description": "The hostname to connect to a remote system. The default hostname being used localhost."
},
"enableAutoVariableSummaries": {
"type": "boolean",
"description": "Enable auto generated summaries for variables when no summaries exist for a given type. This feature can cause performance delays in large projects when viewing variables.",
"default": false
},
"displayExtendedBacktrace": {
"type": "boolean",
"description": "Enable language specific extended backtraces.",
"default": false
},
"enableSyntheticChildDebugging": {
"type": "boolean",
"description": "If a variable is displayed using a synthetic children, also display the actual contents of the variable at the end under a [raw] entry. This is useful when creating sythetic child plug-ins as it lets you see the actual contents of the variable.",
"default": false
},
"commandEscapePrefix": {
"type": "string",
"description": "The escape prefix character to use for executing regular LLDB commands in the Debug Console, instead of printing variables. Defaults to a back-tick (`). If empty, then all expression in the Debug Console are treated as regular LLDB commands.",
"default": "`"
},
"customFrameFormat": {
"type": "string",
"description": "If non-empty, stack frames will have descriptions generated based on the provided format. See https://lldb.llvm.org/use/formatting.html for an explanation on format strings for frames. If the format string contains errors, an error message will be displayed on the Debug Console and the default frame names will be used. This might come with a performance cost because debug information might need to be processed to generate the description.",
"default": ""
},
"customThreadFormat": {
"type": "string",
"description": "If non-empty, threads will have descriptions generated based on the provided format. See https://lldb.llvm.org/use/formatting.html for an explanation on format strings for threads. If the format string contains errors, an error message will be displayed on the Debug Console and the default thread names will be used. This might come with a performance cost because debug information might need to be processed to generate the description.",
"default": ""
}
}
}
},
"initialConfigurations": [
{
"type": "lldb-dap",
"request": "launch",
"name": "Debug",
"program": "${workspaceFolder}/<your program>",
"args": [],
"env": [],
"cwd": "${workspaceFolder}"
}
],
"configurationSnippets": [
{
"label": "LLDB: Launch",
"description": "",
"body": {
"type": "lldb-dap",
"request": "launch",
"name": "${2:Launch}",
"program": "^\"\\${workspaceFolder}/${1:<your program>}\"",
"args": [],
"env": [],
"cwd": "^\"\\${workspaceFolder}\""
}
},
{
"label": "LLDB: Attach",
"description": "",
"body": {
"type": "lldb-dap",
"request": "attach",
"name": "${2:Attach}",
"program": "${1:<your program>}",
"waitFor": true
}
},
{
"label": "LLDB: Load Coredump",
"description": "",
"body": {
"type": "lldb-dap",
"request": "attach",
"name": "${2:Core}",
"program": "${1:<your program>}",
"coreFile": "${1:<your program>}.core"
}
}
]
}
],
"views": {
"debug": [
{
"id": "lldb-dap.modules",
"name": "Modules",
"when": "inDebugMode && debugType == 'lldb-dap' && lldb-dap.showModules",
"icon": "$(symbol-module)"
}
]
}
}
}