Skip to content

Commit

Permalink
[new release] owee (0.8)
Browse files Browse the repository at this point in the history
CHANGES:

Sun Feb 16 08:22:39 AM JST 2025

- Add program header parsing by @JosiahWhite
  (Needed to improve Magic-Trace support for Rust programs,
   or, more generallry, ELF spec)
  • Loading branch information
let-def committed Feb 15, 2025
1 parent 94514fa commit 8b1f983
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions packages/owee/owee.0.8/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
opam-version: "2.0"
synopsis: "OCaml library to work with DWARF format"
description: """

Owee is an experimental library to work with DWARF format.
It can parse ELF binaries and interpret DWARF debugline programs.

It can also be used to find locations of functions from the current process."""
maintainer: ["Frédéric Bour <[email protected]>"]
authors: ["Frédéric Bour <[email protected]>"]
license: "MIT"
homepage: "https://github.com/let-def/owee"
bug-reports: "https://github.com/let-def/owee/issues"
depends: [
"dune" {>= "3.0"}
"ocaml" {>= "4.08"}
"cmdliner" {with-test}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/let-def/owee.git"
available: arch != "x86_32" & arch != "arm32"
url {
src: "https://github.com/let-def/owee/releases/download/v0.8/owee-0.8.tbz"
checksum: [
"sha256=62c4d1b26d768b2e762df337305f7499ff5ccb82681967a5ab126523fbcfb3d0"
"sha512=0ca47def037d62d2db336c7109f79be966c1529c8908a85ef8d1937f1f45a45fdcd98d84d3f5736b78f6c31953eb8ac0f52b1a4201ab8db24793685a2cda0a16"
]
}
x-commit-hash: "358901e430d9640db779d541ef6b4e1de91eebc5"

0 comments on commit 8b1f983

Please sign in to comment.