]> git.lizzy.rs Git - rust.git/blob - config.toml.example
Auto merge of #43950 - redox-os:redox_docker, r=alexcrichton
[rust.git] / config.toml.example
1 # Sample TOML configuration file for building Rust.
2 #
3 # To configure rustbuild, copy this file to the directory from which you will be
4 # running the build, and name it config.toml.
5 #
6 # All options are commented out by default in this file, and they're commented
7 # out with their default values. The build system by default looks for
8 # `config.toml` in the current directory of a build for build configuration, but
9 # a custom configuration file can also be specified with `--config` to the build
10 # system.
11
12 # =============================================================================
13 # Tweaking how LLVM is compiled
14 # =============================================================================
15 [llvm]
16
17 # Indicates whether rustc will support compilation with LLVM
18 # note: rustc does not compile without LLVM at the moment
19 #enabled = true
20
21 # Indicates whether the LLVM build is a Release or Debug build
22 #optimize = true
23
24 # Indicates whether an LLVM Release build should include debug info
25 #release-debuginfo = false
26
27 # Indicates whether the LLVM assertions are enabled or not
28 #assertions = false
29
30 # Indicates whether ccache is used when building LLVM
31 #ccache = false
32 # or alternatively ...
33 #ccache = "/path/to/ccache"
34
35 # If an external LLVM root is specified, we automatically check the version by
36 # default to make sure it's within the range that we're expecting, but setting
37 # this flag will indicate that this version check should not be done.
38 #version-check = false
39
40 # Link libstdc++ statically into the librustc_llvm instead of relying on a
41 # dynamic version to be available.
42 #static-libstdcpp = false
43
44 # Tell the LLVM build system to use Ninja instead of the platform default for
45 # the generated build system. This can sometimes be faster than make, for
46 # example.
47 #ninja = false
48
49 # LLVM targets to build support for.
50 # Note: this is NOT related to Rust compilation targets. However, as Rust is
51 # dependent on LLVM for code generation, turning targets off here WILL lead to
52 # the resulting rustc being unable to compile for the disabled architectures.
53 # Also worth pointing out is that, in case support for new targets are added to
54 # LLVM, enabling them here doesn't mean Rust is automatically gaining said
55 # support. You'll need to write a target specification at least, and most
56 # likely, teach rustc about the C ABI of the target. Get in touch with the
57 # Rust team and file an issue if you need assistance in porting!
58 #targets = "X86;ARM;AArch64;Mips;PowerPC;SystemZ;JSBackend;MSP430;Sparc;NVPTX;Hexagon"
59
60 # LLVM experimental targets to build support for. These targets are specified in
61 # the same format as above, but since these targets are experimental, they are
62 # not built by default and the experimental Rust compilation targets that depend
63 # on them will not work unless the user opts in to building them. Possible
64 # experimental LLVM targets include WebAssembly for the
65 # wasm32-experimental-emscripten Rust target.
66 #experimental-targets = ""
67
68 # Cap the number of parallel linker invocations when compiling LLVM.
69 # This can be useful when building LLVM with debug info, which significantly
70 # increases the size of binaries and consequently the memory required by
71 # each linker process.
72 # If absent or 0, linker invocations are treated like any other job and
73 # controlled by rustbuild's -j parameter.
74 #link-jobs = 0
75
76 # =============================================================================
77 # General build configuration options
78 # =============================================================================
79 [build]
80
81 # Build triple for the original snapshot compiler. This must be a compiler that
82 # nightlies are already produced for. The current platform must be able to run
83 # binaries of this build triple and the nightly will be used to bootstrap the
84 # first compiler.
85 #build = "x86_64-unknown-linux-gnu"    # defaults to your host platform
86
87 # In addition to the build triple, other triples to produce full compiler
88 # toolchains for. Each of these triples will be bootstrapped from the build
89 # triple and then will continue to bootstrap themselves. This platform must
90 # currently be able to run all of the triples provided here.
91 #host = ["x86_64-unknown-linux-gnu"]   # defaults to just the build triple
92
93 # In addition to all host triples, other triples to produce the standard library
94 # for. Each host triple will be used to produce a copy of the standard library
95 # for each target triple.
96 #target = ["x86_64-unknown-linux-gnu"] # defaults to just the build triple
97
98 # Instead of downloading the src/stage0.txt version of Cargo specified, use
99 # this Cargo binary instead to build all Rust code
100 #cargo = "/path/to/bin/cargo"
101
102 # Instead of downloading the src/stage0.txt version of the compiler
103 # specified, use this rustc binary instead as the stage0 snapshot compiler.
104 #rustc = "/path/to/bin/rustc"
105
106 # Flag to specify whether any documentation is built. If false, rustdoc and
107 # friends will still be compiled but they will not be used to generate any
108 # documentation.
109 #docs = true
110
111 # Indicate whether the compiler should be documented in addition to the standard
112 # library and facade crates.
113 #compiler-docs = false
114
115 # Indicate whether submodules are managed and updated automatically.
116 #submodules = true
117
118 # The path to (or name of) the GDB executable to use. This is only used for
119 # executing the debuginfo test suite.
120 #gdb = "gdb"
121
122 # The node.js executable to use. Note that this is only used for the emscripten
123 # target when running tests, otherwise this can be omitted.
124 #nodejs = "node"
125
126 # Python interpreter to use for various tasks throughout the build, notably
127 # rustdoc tests, the lldb python interpreter, and some dist bits and pieces.
128 # Note that Python 2 is currently required.
129 #python = "python2.7"
130
131 # Force Cargo to check that Cargo.lock describes the precise dependency
132 # set that all the Cargo.toml files create, instead of updating it.
133 #locked-deps = false
134
135 # Indicate whether the vendored sources are used for Rust dependencies or not
136 #vendor = false
137
138 # Typically the build system will build the rust compiler twice. The second
139 # compiler, however, will simply use its own libraries to link against. If you
140 # would rather to perform a full bootstrap, compiling the compiler three times,
141 # then you can set this option to true. You shouldn't ever need to set this
142 # option to true.
143 #full-bootstrap = false
144
145 # Enable a build of the and extended rust tool set which is not only the
146 # compiler but also tools such as Cargo. This will also produce "combined
147 # installers" which are used to install Rust and Cargo together. This is
148 # disabled by default.
149 #extended = false
150
151 # Verbosity level: 0 == not verbose, 1 == verbose, 2 == very verbose
152 #verbose = 0
153
154 # Build the sanitizer runtimes
155 #sanitizers = false
156
157 # Build the profiler runtime
158 #profiler = false
159
160 # Indicates whether the OpenSSL linked into Cargo will be statically linked or
161 # not. If static linkage is specified then the build system will download a
162 # known-good version of OpenSSL, compile it, and link it to Cargo.
163 #openssl-static = false
164
165 # Run the build with low priority, by setting the process group's "nice" value
166 # to +10 on Unix platforms, and by using a "low priority" job object on Windows.
167 #low-priority = false
168
169 # =============================================================================
170 # General install configuration options
171 # =============================================================================
172 [install]
173
174 # Instead of installing to /usr/local, install to this path instead.
175 #prefix = "/usr/local"
176
177 # Where to install system configuration files
178 # If this is a relative path, it will get installed in `prefix` above
179 #sysconfdir = "/etc"
180
181 # Where to install documentation in `prefix` above
182 #docdir = "share/doc/rust"
183
184 # Where to install binaries in `prefix` above
185 #bindir = "bin"
186
187 # Where to install libraries in `prefix` above
188 #libdir = "lib"
189
190 # Where to install man pages in `prefix` above
191 #mandir = "share/man"
192
193 # =============================================================================
194 # Options for compiling Rust code itself
195 # =============================================================================
196 [rust]
197
198 # Whether or not to optimize the compiler and standard library
199 # Note: the slowness of the non optimized compiler compiling itself usually
200 #       outweighs the time gains in not doing optimizations, therefore a
201 #       full bootstrap takes much more time with optimize set to false.
202 #optimize = true
203
204 # Number of codegen units to use for each compiler invocation. A value of 0
205 # means "the number of cores on this machine", and 1+ is passed through to the
206 # compiler.
207 #codegen-units = 1
208
209 # Whether or not debug assertions are enabled for the compiler and standard
210 # library. Also enables compilation of debug! and trace! logging macros.
211 #debug-assertions = false
212
213 # Whether or not debuginfo is emitted
214 #debuginfo = false
215
216 # Whether or not line number debug information is emitted
217 #debuginfo-lines = false
218
219 # Whether or not to only build debuginfo for the standard library if enabled.
220 # If enabled, this will not compile the compiler with debuginfo, just the
221 # standard library.
222 #debuginfo-only-std = false
223
224 # Whether or not jemalloc is built and enabled
225 #use-jemalloc = true
226
227 # Whether or not jemalloc is built with its debug option set
228 #debug-jemalloc = false
229
230 # Whether or not `panic!`s generate backtraces (RUST_BACKTRACE)
231 #backtrace = true
232
233 # The default linker that will be used by the generated compiler. Note that this
234 # is not the linker used to link said compiler.
235 #default-linker = "cc"
236
237 # The default ar utility that will be used by the generated compiler if LLVM
238 # cannot be used. Note that this is not used to assemble said compiler.
239 #default-ar = "ar"
240
241 # The "channel" for the Rust build to produce. The stable/beta channels only
242 # allow using stable features, whereas the nightly and dev channels allow using
243 # nightly features
244 #channel = "dev"
245
246 # By default the `rustc` executable is built with `-Wl,-rpath` flags on Unix
247 # platforms to ensure that the compiler is usable by default from the build
248 # directory (as it links to a number of dynamic libraries). This may not be
249 # desired in distributions, for example.
250 #rpath = true
251
252 # Flag indicating whether tests are compiled with optimizations (the -O flag) or
253 # with debuginfo (the -g flag)
254 #optimize-tests = true
255 #debuginfo-tests = true
256
257 # Flag indicating whether codegen tests will be run or not. If you get an error
258 # saying that the FileCheck executable is missing, you may want to disable this.
259 #codegen-tests = true
260
261 # Flag indicating whether git info will be retrieved from .git automatically.
262 #ignore-git = false
263
264 # =============================================================================
265 # Options for specific targets
266 #
267 # Each of the following options is scoped to the specific target triple in
268 # question and is used for determining how to compile each target.
269 # =============================================================================
270 [target.x86_64-unknown-linux-gnu]
271
272 # C compiler to be used to compiler C code and link Rust code. Note that the
273 # default value is platform specific, and if not specified it may also depend on
274 # what platform is crossing to what platform.
275 #cc = "cc"
276
277 # C++ compiler to be used to compiler C++ code (e.g. LLVM and our LLVM shims).
278 # This is only used for host targets.
279 #cxx = "c++"
280
281 # Path to the `llvm-config` binary of the installation of a custom LLVM to link
282 # against. Note that if this is specifed we don't compile LLVM at all for this
283 # target.
284 #llvm-config = "../path/to/llvm/root/bin/llvm-config"
285
286 # Path to the custom jemalloc static library to link into the standard library
287 # by default. This is only used if jemalloc is still enabled above
288 #jemalloc = "/path/to/jemalloc/libjemalloc_pic.a"
289
290 # If this target is for Android, this option will be required to specify where
291 # the NDK for the target lives. This is used to find the C compiler to link and
292 # build native code.
293 #android-ndk = "/path/to/ndk"
294
295 # The root location of the MUSL installation directory. The library directory
296 # will also need to contain libunwind.a for an unwinding implementation. Note
297 # that this option only makes sense for MUSL targets that produce statically
298 # linked binaries
299 #musl-root = "..."
300
301 # =============================================================================
302 # Distribution options
303 #
304 # These options are related to distribution, mostly for the Rust project itself.
305 # You probably won't need to concern yourself with any of these options
306 # =============================================================================
307 [dist]
308
309 # This is the folder of artifacts that the build system will sign. All files in
310 # this directory will be signed with the default gpg key using the system `gpg`
311 # binary. The `asc` and `sha256` files will all be output into the standard dist
312 # output folder (currently `build/dist`)
313 #
314 # This folder should be populated ahead of time before the build system is
315 # invoked.
316 #sign-folder = "path/to/folder/to/sign"
317
318 # This is a file which contains the password of the default gpg key. This will
319 # be passed to `gpg` down the road when signing all files in `sign-folder`
320 # above. This should be stored in plaintext.
321 #gpg-password-file = "path/to/gpg/password"
322
323 # The remote address that all artifacts will eventually be uploaded to. The
324 # build system generates manifests which will point to these urls, and for the
325 # manifests to be correct they'll have to have the right URLs encoded.
326 #
327 # Note that this address should not contain a trailing slash as file names will
328 # be appended to it.
329 #upload-addr = "https://example.com/folder"
330
331 # Whether to build a plain source tarball to upload
332 # We disable that on Windows not to override the one already uploaded on S3
333 # as the one built on Windows will contain backslashes in paths causing problems
334 # on linux
335 #src-tarball = true