forked from aya-rs/aya
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBrewfile
More file actions
23 lines (18 loc) · 696 Bytes
/
Brewfile
File metadata and controls
23 lines (18 loc) · 696 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Keep this congruent with `.github/workflows/ci.yml`.
# The curl shipped on macOS doesn't contain
# https://github.com/curl/curl/commit/85efbb92b8e6679705e122cee45ce76c56414a3e
# which is needed for proper handling of `--etag-{compare,save}`.
brew "curl"
# The clang shipped on macOS doesn't support BPF, so we need LLVM from brew.
brew "llvm"
brew "lynx"
brew "pkg-config"
brew "qemu"
# Required by libbpf-sys vendored dependencies.
brew "autoconf"
brew "automake"
brew "gawk"
# We need a musl C toolchain to compile our `test-distro` since some of our
# dependencies have build scripts that compile C code (i.e xz2).
tap "filosottile/musl-cross"
brew "filosottile/musl-cross/musl-cross"