-
Notifications
You must be signed in to change notification settings - Fork 37
/
config.toml
53 lines (45 loc) · 866 Bytes
/
config.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
change-id = 129295
[llvm]
targets = "AArch64;ARM;X86;RISCV"
experimental-targets = ""
clang = true
download-ci-llvm = false
version-suffix = ""
ldflags = "-s"
libzstd = true
[build]
docs = false
submodules = false
extended = true
tools = [
"cargo",
"src",
"clippy",
"rust-analyzer",
"rustfmt",
"rust-analyzer-proc-macro-srv",
]
cargo-native-static = true
[install]
prefix = "../out"
sysconfdir = "etc"
[rust]
channel = "nightly"
lld = true
llvm-tools = true
strip = true
codegen-units = 1
[target.x86_64-unknown-linux-gnu]
llvm-has-rust-patches = false
cc = "clang-18"
cxx = "clang++-18"
linker = "clang-18"
[target.aarch64-apple-darwin]
llvm-has-rust-patches = false
[target.x86_64-apple-darwin]
llvm-has-rust-patches = false
[target.x86_64-pc-windows-gnu]
llvm-has-rust-patches = false
cc = "clang"
cxx = "clang++"
linker = "clang"