File tree Expand file tree Collapse file tree 2 files changed +61
-1
lines changed
Expand file tree Collapse file tree 2 files changed +61
-1
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,6 @@ Session.vim
3030!/tests/run-make/thumb-none-qemu/example/.cargo
3131
3232## Configuration
33- /config.toml
3433/Makefile
3534config.mk
3635config.stamp
Original file line number Diff line number Diff line change 1+ change-id = 118703
2+
3+ [llvm]
4+ # They deleted llvm wtf
5+ download-ci-llvm = false
6+ optimize = true
7+ thin-lto = true
8+ link-shared = false
9+ ninja = true
10+ targets = "X86"
11+ link-jobs = 0
12+ cflags = "-Qunused-arguments -O2 -msse2 /clang:-O3"
13+ cxxflags = "-Qunused-arguments -O2 -msse2 /clang:-O3"
14+ ldflags = "-Wl,-O3 -msse2"
15+ polly = true
16+ clang = true
17+ clang-cl = "C:/Program Files/LLVM/bin/clang-cl.exe"
18+
19+ [build]
20+ build-stage = 2
21+ cargo-native-static = false
22+ # When compiling from source, you usually want all tools.
23+ #extended = true
24+ build = "x86_64-pc-windows-msvc"
25+ target = [
26+ "i686-pc-windows-msvc",
27+ "x86_64-pc-windows-msvc",
28+ ]
29+
30+ docs = false
31+ tools = [
32+ "src",
33+ ]
34+
35+ [rust]
36+ channel = "dev"
37+ codegen-backends = ["llvm"]
38+ codegen-units = 1
39+ codegen-units-std = 1
40+ debug = false
41+ dist-src = false
42+ download-rustc = false
43+ #jemalloc = true
44+ #lto = "thin"
45+ optimize = 3
46+ parallel-compiler = true
47+ strip = true
48+ optimize-tests = true
49+ thin-lto-import-instr-limit = 100
50+ validate-mir-opts = 3
51+ use-lld = "self-contained"
52+
53+ [dist]
54+ src-tarball = false
55+ compression-profile = "best"
56+ missing-tools = true
57+
58+ # for creating a downloadable package: python x.py install, then create an archive this
59+ [install]
60+ prefix = "../dist/rust"
61+ sysconfdir = "."
You can’t perform that action at this time.
0 commit comments