nandi/jolt-nativepublic Fork 0
807f68183d34c39f2c251c5ad1ec50bb79005211
Commits
Clone
git clone https://git.rickub.com/nandi/jolt-native.git
git clone ssh://git@rickub.com/nandi/jolt-native.git

Host key fingerprint (ed25519): SHA256:iycHnxEyq0Q7uyVpB7JlznP0G7JrTPXLYRcAU5CSLhc — verify it before your first connect.

config.toml · 17 lines · 707 BTOML Blame HistoryRaw
Lift freeq's AV media plane out of sleek 90f8b89 nandi 19d ago1# Link through `zig cc`, which brings its own glibc sysroot, so a build needs no
2# system C toolchain — the same arrangement vidya uses, and the reason this
3# repo builds on a machine with no `cc` on its PATH at all.
4#
5# The pinned tools come from the DotSlash files in `scripts/`, fetched and
6# cached on first use; `dotslash` must be on PATH. Paths are relative to the
7# directory cargo runs in, which is the workspace root.
8[build]
9rustc-wrapper = "scripts/sccache"
10
11# openh264 is C++, so the workspace needs both halves of zig's toolchain.
12[env]
13CC = { value = "scripts/zcc", relative = true }
14CXX = { value = "scripts/zxx", relative = true }
15
16[target.x86_64-unknown-linux-gnu]
17linker = "scripts/zcc"