nandi/jolt-nativepublic Fork 0
8cf1b3347ef6fa83297b6866dfd47d2728d4e339
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.

reindeer.toml · 32 lines · 896 BTOML Blame HistoryRaw
Build under buck2, with the toolchain pinned rather than found 460541b nandi 19d ago1# Reindeer configuration for the buck2 third-party Rust crates.
2vendor = {}
3
4# Crates read CARGO_PKG_* at compile time; without this they fail to build.
5cargo_env = true
6
7# Feature resolution runs once per platform. Naming any platform replaces
8# reindeer's default list; these are the desktop hosts this repo ships for.
9[platform.linux-x86_64]
10target = "x86_64-unknown-linux-gnu"
11execution-platform = true
12
13[platform.linux-arm64]
14target = "aarch64-unknown-linux-gnu"
15execution-platform = true
16
17[platform.macos-x86_64]
18target = "x86_64-apple-darwin"
19execution-platform = true
20
21[platform.macos-arm64]
22target = "aarch64-apple-darwin"
23execution-platform = true
24
25[buck]
26file_name = "BUCK"
27buckfile_imports = """
28load("@prelude//rust:cargo_package.bzl", "cargo")
29load("@prelude//rust:cargo_buildscript.bzl", "buildscript_run")
30"""
31rust_library = "cargo.rust_library"
32rust_binary = "cargo.rust_binary"