tensorush/scoop
1
6
Fork
You've already forked scoop
0
Darwin performance counter observation library.
  • Zig 100%
2025年11月28日 12:58:34 +03:00
examples fix: style 2025年08月24日 17:57:08 +03:00
src fix: style 2025年08月24日 13:03:55 +03:00
.gitattributes init 2025年03月12日 15:38:30 +03:00
.gitignore init 2025年03月12日 15:38:30 +03:00
build.zig chore: style 2025年09月07日 11:37:54 +03:00
build.zig.zon chore: update Zig 2025年10月12日 15:15:26 +03:00
LICENSE chore 2025年11月28日 12:58:34 +03:00
README.md chore: fix readme 2025年11月04日 18:35:58 +03:00

scoop

Darwin performance counter observation library.

Usage

  1. Add scoop dependency to build.zig.zon:
zig fetch --save git+https://codeberg.org/tensorush/scoop.git
  1. Use scoop dependency in build.zig:
constscoop_dep=b.dependency("scoop",.{.target=target,.optimize=optimize,});constscoop_mod=scoop_dep.module("scoop");constroot_mod=b.createModule(.{.target=target,.optimize=optimize,.imports=&.{.{.name="scoop",.module=scoop_mod},},});