• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1profile = "compiler"
2changelog-seen = 2
3
4[llvm]
5download-ci-llvm = false
6targets = "X86;AArch64;ARM"
7cflags = "-fstack-protector-all"
8cxxflags = "-fstack-protector-all"
9
10[build]
11target = ["x86_64-unknown-linux-gnu", "x86_64-pc-windows-gnullvm", "armv7-unknown-linux-ohos", "x86_64-unknown-linux-ohos", "aarch64-unknown-linux-ohos"]
12submodules = false
13compiler-docs = false
14extended = true
15tools = [
16    "clippy",
17]
18docs = false
19vendor = true
20#verbose = 1
21sanitizers = true
22profiler = true
23
24[rust]
25optimize = true
26codegen-units = 1
27split-debuginfo = "packed"
28lto = "thin-local"
29backtrace = false
30description = "xxxxx"
31channel = "nightly"
32strip = true
33stack-protector = "strong"
34
35[install]
36bindir = "bin"
37libdir = "lib"
38
39[target.x86_64-unknown-linux-gnu]
40cc = "clang"
41cxx = "clang++"
42linker = "clang"
43ar = "llvm-ar"
44
45[target.aarch64-unknown-linux-ohos]
46cc = "aarch64-unknown-linux-ohos-clang"
47cxx = "aarch64-unknown-linux-ohos-clang++"
48linker = "aarch64-unknown-linux-ohos-clang"
49ar = "llvm-ar"
50
51[target.armv7-unknown-linux-ohos]
52cc = "armv7-unknown-linux-ohos-clang"
53cxx = "armv7-unknown-linux-ohos-clang++"
54linker = "armv7-unknown-linux-ohos-clang"
55ar = "llvm-ar"
56
57[target.x86_64-unknown-linux-ohos]
58cc = "x86_64-unknown-linux-ohos-clang"
59cxx = "x86_64-unknown-linux-ohos-clang++"
60linker = "x86_64-unknown-linux-ohos-clang"
61ar = "llvm-ar"
62
63[target.x86_64-pc-windows-gnullvm]
64cc = "x86_64-w64-mingw32-clang"
65cxx = "x86_64-w64-mingw32-clang++"
66linker = "x86_64-w64-mingw32-clang"
67ar = "x86_64-w64-mingw32-ar"
68
69[dist]
70compression-formats = ["gz"]