forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathbootstrap.rust9x.gnu.toml
More file actions
61 lines (54 loc) · 1.39 KB
/
Copy pathbootstrap.rust9x.gnu.toml
File metadata and controls
61 lines (54 loc) · 1.39 KB
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
54
55
56
57
58
59
60
61
# See bootstrap.example.toml for documentation of available options
#
change-id = 160100
[llvm]
# Will download LLVM from CI if available on your platform.
download-ci-llvm = true
# NOTE: if you set ↑ to false, disable other LLVM targets to save lots of build time!
# targets = "X86"
# experimental-targets = ""
[build]
build = "x86_64-unknown-linux-gnu"
target = [
"x86_64-rust9x-windows-gnu",
"i686-rust9x-windows-gnu",
"i586-rust9x-windows-gnu",
"x86_64-unknown-linux-gnu",
]
docs = false
extended = true
tools = [
# "cargo",
"clippy",
"cargo-clippy",
"rustdoc",
"rustfmt",
"cargo-fmt",
# "rust-analyzer",
"rust-analyzer-proc-macro-srv",
# "analysis",
"src",
# "wasm-component-ld",
# "miri", "cargo-miri" # for dev/nightly channels
]
[target.x86_64-pc-windows-gnu]
cc = "x86_64-w64-mingw32-gcc"
cxx = "x86_64-w64-mingw32-g++"
[target.x86_64-rust9x-windows-gnu]
cc = "x86_64-w64-mingw32-gcc"
cxx = "x86_64-w64-mingw32-g++"
[target.i686-pc-windows-gnu]
cc = "i686-w64-mingw32-gcc"
cxx = "i686-w64-mingw32-g++"
[target.i686-rust9x-windows-gnu]
cc = "i686-w64-mingw32-gcc"
cxx = "i686-w64-mingw32-g++"
[target.i586-rust9x-windows-gnu]
cc = "i686-w64-mingw32-gcc"
cxx = "i686-w64-mingw32-g++"
[rust]
# enable rust-lld.exe so we don't need editbin.exe
lld = true
# you can override this with -i/--incremental
# incremental = false
# incremental = true