Issue 18612 - missing debug info: frame locals (eg lldb fr v) not shown with dmd (works with ldc)
Summary: missing debug info: frame locals (eg lldb fr v) not shown with dmd (works wit...
Status: RESOLVED DUPLICATE of issue 18527
Alias: None
Product: D
Classification: Unclassified
Component: dmd (show other issues)
Version: D2
Hardware: x86 Mac OS X
: P1 critical
Assignee: No Owner
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2018-03-15 00:08 UTC by Timothee Cour
Modified: 2019-05-18 13:33 UTC (History)
2 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this issue.
Description Timothee Cour 2018-03-15 00:08:39 UTC
```
-- 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
Comment 1 Hiroki Noda 2019-05-18 00:52:00 UTC
This seems to be duplicated with https://issues.dlang.org/show_bug.cgi?id=18527.
Comment 2 Jacob Carlborg 2019-05-18 13:33:54 UTC

*** This issue has been marked as a duplicate of issue 18527 ***