Skip to content

Commit 74d3e73

Browse files
authored
Enable breakpoints in assembler files (.asm, .s, .S) (#191)
* Enable breakpoints in assembler files (.asm, .s, .S) Defines a pseudo-language 'cdt-gdb-asm' which defines expected file endings for assembler files, and adds it to breakpoint support. --------- Signed-off-by: Jens Reinecke <[email protected]>
1 parent b02551e commit 74d3e73

File tree

2 files changed

+19
-2
lines changed

2 files changed

+19
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
# Change Log
22

3+
## Unreleased
4+
5+
- Fixes [`#191`](https://github.com/eclipse-cdt-cloud/cdt-gdb-vscode/pull/191): Cannot set breakpoints in assembler files.
6+
37
## 2.4.1
48

5-
- Fixes [`184`](https://github.com/eclipse-cdt-cloud/cdt-gdb-vscode/issues/184): Add `auxiliaryGdb` setting to `attach` type for `gdbtarget`.
9+
- Fixes [`#184`](https://github.com/eclipse-cdt-cloud/cdt-gdb-vscode/issues/184): Add `auxiliaryGdb` setting to `attach` type for `gdbtarget`.
610
- Update to cdt-gdb-adapter v1.4.1
7-
- Fixes [cdt-gdb-adapter `400`](https://github.com/eclipse-cdt-cloud/cdt-gdb-adapter/issues/400): Evaluation of variables to support RTOS Views extension.
11+
- Fixes [cdt-gdb-adapter `#400`](https://github.com/eclipse-cdt-cloud/cdt-gdb-adapter/issues/400): Evaluation of variables to support RTOS Views extension.
812

913
## 2.4.0
1014

package.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,16 @@
3333
"onCommand:cdt.debug.suspendAllSession"
3434
],
3535
"contributes": {
36+
"languages": [
37+
{
38+
"id": "cdt-gdb-asm",
39+
"extensions": [
40+
"asm",
41+
"s",
42+
"S"
43+
]
44+
}
45+
],
3646
"commands": [
3747
{
3848
"category": "GDB",
@@ -65,6 +75,9 @@
6575
}
6676
],
6777
"breakpoints": [
78+
{
79+
"language": "cdt-gdb-asm"
80+
},
6881
{
6982
"language": "c"
7083
},

0 commit comments

Comments
 (0)