https://github.com/bmeurer/partial-dwarf-info-repro
Reproduction case for partial DWARF information
https://github.com/bmeurer/partial-dwarf-info-repro
Last synced: 6 months ago
JSON representation
Reproduction case for partial DWARF information
- Host: GitHub
- URL: https://github.com/bmeurer/partial-dwarf-info-repro
- Owner: bmeurer
- Created: 2019-12-20T12:13:00.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-12-20T12:46:27.000Z (over 6 years ago)
- Last Synced: 2025-01-22T21:32:11.927Z (over 1 year ago)
- Language: HTML
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Reproduction case for partial DWARF information
This is a reproduction case for the problem of partial DWARF information, where
we only have debuginfo for a subset of the functions in a Wasm module. In this
case Chromium DevTools is going to silently step over all functions that don't
have DWARF information, which is not the user experience that we would like to
have.
Issue: [chromium:1036283](https://crbug.com/1036283)
## Building
This was only tested on Ubuntu / Debian. You'll need to make sure that you installed `clang-8` and `lld-8` packages, i.e.
```console
sudo apt-get install clang-8 lld-8
```
Afterwards just build with
```console
make
```
start the web server with
```console
make start
```
and point your browser to [`http://localhost:4000`](http://localhost:4000).