-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.toml
37 lines (29 loc) · 980 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
# Includes one of the default files in src/bootstrap/defaults
profile = "dist"
change-id = 102579
[target.x86_64-unknown-linux-gnu]
llvm-config = "/opt/llvm/bin/llvm-config"
[target.riscv32imc-unknown-none-elf]
llvm-config = "/opt/llvm/bin/llvm-config"
[target.riscv32e-unknown-none-elf]
llvm-config = "/opt/llvm/bin/llvm-config"
[target.riscv32ec-unknown-none-elf]
llvm-config = "/opt/llvm/bin/llvm-config"
[target.riscv32em-unknown-none-elf]
llvm-config = "/opt/llvm/bin/llvm-config"
[target.riscv32emc-unknown-none-elf]
llvm-config = "/opt/llvm/bin/llvm-config"
[build]
target = [
"x86_64-unknown-linux-gnu",
"riscv32imc-unknown-none-elf",
"riscv32e-unknown-none-elf",
"riscv32ec-unknown-none-elf",
"riscv32em-unknown-none-elf",
"riscv32emc-unknown-none-elf",
]
# Building docs for no_std targets seems to fail here
docs = false
[rust]
# Disabled due to FileCheck executable missing, as advised in Rust config.example.toml
codegen-tests = false