[Issue 18612] New: missing debug info: frame locals (eg lldb fr v) not shown with dmd (works with ldc)

d-bugmail at puremagic.com d-bugmail at puremagic.com
Thu Mar 15 00:08:39 UTC 2018


https://issues.dlang.org/show_bug.cgi?id=18612

          Issue ID: 18612
           Summary: missing debug info: frame locals (eg lldb fr v) not
                    shown with dmd (works with ldc)
           Product: D
           Version: D2
          Hardware: x86
                OS: Mac OS X
            Status: NEW
          Severity: major
          Priority: P1
         Component: dmd
          Assignee: nobody at puremagic.com
          Reporter: timothee.cour2 at gmail.com

```
-- main.d
extern(C) void test(){
 int a=1;
}
void main(){
  test;
}
```

```
dmd -g main.d
lldb ./main
b test
r
fr v
# nothing shown
```

with ldmd2:
(lldb) fr v
(int) a = 0

--


More information about the Digitalmars-d-bugs mailing list