Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wasmerio/wasm-debug
A runtime-independent crate for transforming Wasm-DWARF
https://github.com/wasmerio/wasm-debug
debug debugging dwarf webassembly
Last synced: 3 months ago
JSON representation
A runtime-independent crate for transforming Wasm-DWARF
- Host: GitHub
- URL: https://github.com/wasmerio/wasm-debug
- Owner: wasmerio
- License: apache-2.0
- Created: 2020-02-19T22:47:24.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-03-11T18:49:00.000Z (over 4 years ago)
- Last Synced: 2024-07-14T08:03:49.742Z (4 months ago)
- Topics: debug, debugging, dwarf, webassembly
- Language: Rust
- Size: 48.8 KB
- Stars: 9
- Watchers: 3
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- awesome-wasm-tools - repo - debug) (Tool development)
README
# Wasm debug
A general purpose crate for dealing with [Wasm DWARF][wasm-dwarf] for
and transforming it into DWARF that can be included in a compiled
object file or given to a debugger via the [GDB JIT interface][gdb-jit-interface].This project is a fork of [`wasmtime-debug`][] that is not dependent
on any runtime.When applying fixes to this crate, please send a copy of the patch to
[`wasmtime-debug`][] if applicable.When merging in fixes found in [`wasmtime-debug`] please be mindful of
updating copyright notices and possible license changes.## Licenses
This crate contains code that is licensed and/or may be licensed under
the following licenses:Apache 2.0 with LLVM exception:
```
Copyright 2020 The Wasmtime Project DevelopersLicensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
```Apache 2.0 with LLVM exception:
```
Copyright 2020-present Wasmer, inc.Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
```See the [license][] for more information.
[`wasmtime-debug`]: https://crates.io/crates/wasmtime-debug
[wasm-dwarf]: https://yurydelendik.github.io/webassembly-dwarf/
[gdb-jit-interface]: https://sourceware.org/gdb/current/onlinedocs/gdb/JIT-Interface.html
[license]: LICENSE