-
Notifications
You must be signed in to change notification settings - Fork 22
fix: support perf jitdumps on macos #385
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -46,9 +46,9 @@ async-trait = "0.1.89" | |||||
| libc = { workspace = true } | ||||||
| bincode = "1.3.3" # Pinned to 1.x: 2.0 changes the wire format and serde integration | ||||||
| object = "0.39" | ||||||
| linux-perf-data = { git = "https://github.com/mstange/linux-perf-data.git", rev = "da5bce4b9fb724e84b1eea0cb6ab9c8a291bc676", features = [ | ||||||
| linux-perf-data = { git = "https://github.com/AvalancheHQ/linux-perf-data.git", rev = "effe486", features = [ | ||||||
| "zstd", | ||||||
| ] } # unreleased main as of 2026-03-19 | ||||||
| ] } # unreleased branch as of 2026-06-01 | ||||||
| debugid = "0.8.0" | ||||||
| memmap2 = "0.9.10" | ||||||
| nix = { version = "0.31.3", features = ["fs", "time", "user"] } | ||||||
|
|
@@ -69,7 +69,7 @@ rmp-serde = "1.3.1" | |||||
| uuid = { version = "1.23.1", features = ["v4"] } | ||||||
| which = "8.0.2" | ||||||
| crc32fast = "1.5.0" | ||||||
| samply = { git = "https://github.com/CodSpeedHQ/samply-codspeed", rev = "e8b8dacc042978953a6db9616c72846f7b8d5062" } | ||||||
| samply = { git = "https://github.com/CodSpeedHQ/samply-codspeed", rev = "75ae209d" } | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
Rule Used: Pin Cargo git dependencies to Note: If this suggestion doesn't match your team's coding style, reply to this and let me know. I'll remember it for next time! |
||||||
|
|
||||||
| [target.'cfg(target_os = "linux")'.dependencies] | ||||||
| procfs = "0.18" | ||||||
|
|
||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
revvalues are short abbreviated SHAs (7–8 chars) rather than the full 40-char SHA that was used previously (e.g. the oldlinux-perf-datarev wasda5bce4b9fb724e84b1eea0cb6ab9c8a291bc676and the oldsamplyrev wase8b8dacc042978953a6db9616c72846f7b8d5062). The lock file resolves them correctly, but abbreviated revs leave a theoretical ambiguity window as the repository grows. Using the full SHA matches the pattern established in the rest of the codebase and the pinning rule intent.Rule Used: Pin Cargo git dependencies to
tagorrev, neve... (source)Note: If this suggestion doesn't match your team's coding style, reply to this and let me know. I'll remember it for next time!