summarylogtreecommitdiffstats
path: root/mingw-config.toml
blob: 975307d7cf13b4e56a76cd99b47ecc41207b2064 (plain)
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
change-id = 118703

[llvm]
targets = "X86"
experimental-targets = ""
link-jobs = 1

[build]
build = "x86_64-unknown-linux-gnu"
host = ["x86_64-unknown-linux-gnu"]
target = ["x86_64-unknown-linux-gnu", "i686-pc-windows-gnu", "x86_64-pc-windows-gnu"]
docs = false
submodules = false
locked-deps = true
vendor = true
extended = true
tools = [
    "cargo",
    "rustdoc",
]
cargo-native-static = true

[install]
prefix = "@PREFIX@"

[rust]
codegen-units = 0
codegen-units-std = 1
channel = "stable"
dist-src = false
lld = true
deny-warnings = false

[target.x86_64-unknown-linux-gnu]
cc = "cc"
cxx = "c++"
ar = "ar"
ranlib = "ranlib"
linker = "cc"

[target.i686-pc-windows-gnu]
cc = "i686-w64-mingw32-cc"
cxx = "i686-w64-mingw32-c++"
ar = "i686-w64-mingw32-ar"
ranlib = "i686-w64-mingw32-ranlib"
linker = "i686-w64-mingw32-cc"
crt-static = true

[target.x86_64-pc-windows-gnu]
cc = "x86_64-w64-mingw32-cc"
cxx = "x86_64-w64-mingw32-c++"
ar = "x86_64-w64-mingw32-ar"
ranlib = "x86_64-w64-mingw32-ranlib"
linker = "x86_64-w64-mingw32-cc"
crt-static = true

[dist]
compression-formats = ["gz"]